* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --soft-black: #111111;
  --cream: #f4f1eb;
  --white: #ffffff;
  --muted: #9a9a9a;
  --line: rgba(255,255,255,.14);
  --dark-line: rgba(10,10,10,.14);
  --accent: #b79a68;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--sans);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.brand img { width: 170px; }
.nav { display: flex; gap: 30px; font-size: 13px; text-transform: uppercase; letter-spacing: .13em; }
.nav a:hover, .footer-links a:hover { opacity: .65; }
.header-book {
  border: 1px solid rgba(255,255,255,.55);
  padding: 11px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 25px; }

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.35), rgba(0,0,0,.62)),
    url("images/banner.png") center/cover;
  color: white;
}
.hero-content { position: relative; z-index: 2; width: min(720px, 90%); margin-left: 8vw; padding-top: 70px; }
.eyebrow { font-size: 11px; letter-spacing: .25em; font-weight: 700; color: #c9c9c9; margin-bottom: 18px; }
.eyebrow.dark { color: #6d6d6d; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(55px, 8vw, 105px);
  line-height: .94;
  font-weight: 600;
}
.hero h1 span { font-style: italic; font-weight: 500; }
.hero-copy { max-width: 520px; margin: 28px 0; color: #d2d2d2; font-size: 17px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
  transition: .25s ease;
}
.btn-primary { background: white; color: black; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,.6); color: white; }
.btn-outline:hover { background: white; color: black; }
.scroll-cue { position: absolute; z-index: 2; right: 5vw; bottom: 28px; font-size: 9px; letter-spacing: .25em; color: #bbb; }
.scroll-cue span { font-size: 18px; margin-left: 8px; }

.section { padding: 110px 7vw; }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 5vw, 68px); line-height: 1.02; }
h2 em { font-weight: 500; }
.intro-text { max-width: 540px; color: #555; font-size: 16px; }

.services { background: #ebe7df; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 55px; }
.section-heading > p { max-width: 320px; color: #666; font-size: 14px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.service-card {
    min-height: 310px;
    padding: 28px;
    border-right: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    position: relative;
    transition: .25s ease;
    cursor: pointer;
}
.service-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}
.service-card:hover { background: #f7f4ee; transform: translateY(-3px); }
.service-card.featured { background: #111; color: white; }
.service-card.featured:hover { background: #181818; }
.service-number { font-size: 10px; letter-spacing: .2em; color: #8b8b8b; }
.service-card h3 { font-family: var(--serif); font-size: 26px; line-height: 1.1; margin-top: 48px; }
.service-card p { color: #6c6c6c; font-size: 13px; margin-top: 18px; max-width: 250px; }
.featured p { color: #aaa; }
.service-card strong { position: absolute; bottom: 27px; left: 28px; font-size: 23px; font-family: var(--serif); font-weight: 600; }
.service-card .duration { position: absolute; bottom: 30px; right: 28px; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: #888; font-weight: 700; }
.featured .duration { color: #aaa; }

.statement { min-height: 510px; background: var(--black); color: white; display: flex; align-items: center; justify-content: center; text-align: center; }
.statement-inner { padding: 60px 20px; }
.statement-logo { width: 180px; margin: 0 auto 40px; }
.statement p { font-family: var(--serif); font-size: clamp(38px, 6vw, 80px); line-height: .98; }
.statement em { color: #b7b7b7; }

.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: center; }
.image-placeholder {
  min-height: 600px;
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.18)),
    url("images/aboutUs.png") center/cover;
}
.about-copy p:not(.eyebrow) { color: #5d5d5d; max-width: 510px; margin-top: 25px; font-size: 15px; }
.text-link { display: inline-block; margin-top: 35px; padding-bottom: 7px; border-bottom: 1px solid #222; text-transform: uppercase; font-size: 11px; letter-spacing: .14em; font-weight: 700; }

.gallery { background: #111; color: white; }

.gallery .section-heading > p { color: #aaa; }

.gallery .eyebrow { color: #aaa; }

/* Square gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* All images same square size */
.gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Remove previous large/wide behavior */
.gallery-large,
.gallery-wide {
  grid-row: auto;
  grid-column: auto;
}

.img-1 { background-image: url("images/gallery1.png"); }
.img-2 { background-image: url("images/gallery2.png"); }
.img-3 { background-image: url("images/gallery3.png"); }
.img-4 { background-image: url("images/gallery4.png"); }
.img-5 { background-image: url("images/gallery5.png"); }
.img-6 { background-image: url("images/gallery6.png"); }


.booking { background: #ebe7df; }
.booking-card { background: #101010; color: white; display: grid; grid-template-columns: 1.5fr .75fr; min-height: 500px; }
.booking-copy { padding: 70px; }
.booking-copy h2 { font-size: clamp(45px, 5vw, 70px); }
.booking-copy > p:not(.eyebrow):not(.booking-note) { color: #aaa; max-width: 560px; margin-top: 25px; }
.booking-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.btn-light-outline { color: white; border: 1px solid #555; }
.btn-light-outline:hover { background: white; color: black; }
.booking-note { margin-top: 35px; color: #777; font-size: 11px; max-width: 560px; }
code { color: #ddd; }
.booking-side { border-left: 1px solid #292929; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; }
.moustache { font-size: 65px; transform: rotate(180deg); margin-bottom: 20px; color: #aaa; }
.booking-side h3 { font-family: var(--serif); font-size: 30px; line-height: 1.1; }
.booking-side p { color: #777; font-size: 13px; max-width: 230px; margin-top: 15px; }

.contact { background: #f4f1eb; }
.contact-grid { display: grid; grid-template-columns: .8fr .7fr 1.3fr; gap: 6vw; align-items: start; }
.contact-details { display: grid; gap: 28px; }
.contact-item span { font-size: 9px; letter-spacing: .22em; font-weight: 700; color: #888; }
.contact-item p { margin-top: 5px; font-size: 14px; }
.contact-item a { border-bottom: 1px solid #aaa; }
.map-card { height: 390px; background: #ddd; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: grayscale(100%); }

footer { background: #080808; color: white; padding: 55px 7vw 35px; display: grid; grid-template-columns: 1fr auto; gap: 30px; }
.footer-brand img { width: 150px; }
.footer-brand p { color: #777; font-size: 11px; margin-top: 10px; }
.footer-links { display: flex; gap: 25px; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.copyright { grid-column: 1 / -1; border-top: 1px solid #222; padding-top: 25px; color: #555; font-size: 10px; }

.mobile-book { display: none; }

@media (max-width: 1000px) {
  .nav { gap: 16px; }
  .header-book { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .image-placeholder { min-height: 500px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .map-card { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  body { padding-bottom: 62px; }
  .site-header { height: 75px; padding: 15px 5vw; }
  .brand img { width: 140px; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    padding: 20px 5vw;
    flex-direction: column;
    gap: 18px;
  }
  .nav.open { display: flex; }
  .hero { min-height: 85vh; }
  .hero-content { margin-left: 6vw; }
  .hero h1 { font-size: 56px; }
  .hero-copy { font-size: 15px; }
  .section { padding: 75px 6vw; }
  .intro { grid-template-columns: 1fr; gap: 35px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .statement { min-height: 420px; }
  .statement-logo { width: 150px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-row: span 2; }
  .gallery-wide { grid-column: 1 / -1; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-copy { padding: 45px 30px; }
  .booking-side { min-height: 260px; border-left: 0; border-top: 1px solid #292929; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-card { grid-column: auto; height: 330px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; flex-wrap: wrap; }
  .copyright { grid-column: auto; }
  .mobile-book {
    display: flex;
    position: fixed;
    z-index: 50;
    bottom: 0;
    left: 0;
    right: 0;
    height: 58px;
    background: #111;
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 700;
  }
}
