:root{
  --bg: #f6efe6;          /* warm cream like screenshot */
  --ink: #1b1b1b;
  --muted: rgba(27,27,27,0.68);
  --line: rgba(27,27,27,0.14);

  --white: #ffffff;
  --button: #9a8558;      /* “Book a table” gold/brown */
  --button-hover: #8a774f;

  --radius: 2px;          /* screenshot looks fairly square */
  --shadow: 0 10px 30px rgba(0,0,0,0.08);

  --max: 1180px;
}

*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a{ color: inherit; text-decoration:none; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAV ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.topbar-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 150px;
}

.logo{
  display:flex;
  align-items:center;
  gap: 10px;
}
.logo-mark{
  width: 88px;
  height: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.nav{
  display:flex;
  align-items:center;
  gap: 20px;
}

.navlink{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 2px;
}
.navlink:hover{ color: var(--ink); }

.navlink.active{
  color: var(--ink);
}

/* Book button */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn.book{
  background: var(--button);
  color: #fff;
}
.btn.book:hover{ background: var(--button-hover); }

/* Mobile menu button */
.nav-toggle{
  display:none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
  border-radius: 6px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height: 2px;
  width: 18px;
  background: rgba(0,0,0,0.65);
  margin: 4px auto;
}

/* ===== HERO ===== */
.hero{
  width: 100%;
}

.hero-media{
  width: 100%;
  height: min(420px, 5vw);
  background:
    linear-gradient(0deg, rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), rgba(0,0,0,0) 55%),
    #bdbdbd; /* placeholder */
  position: relative;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px;
  text-align:center;
}

.hero-title{
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
}

/* ===== FEATURE SECTION ===== */
.feature{
  padding: 44px 0 26px;
}

.feature-inner{
  display:grid;
  grid-template-columns: 480px 1fr;
  gap: 34px;
  align-items: stretch;
  justify-content:center;
}

.card{
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.feature-text{
  padding: 22px 22px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  min-height: 320px;
}

.eyebrow{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--button);
}

.feature-title{
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.feature-body{
  margin: 0;
  font-size: 0.92rem;
  color: rgba(27,27,27,0.70);
  line-height: 1.75;
}

/* image panel */
.feature-image{
  overflow:hidden;
  min-height: 320px;
}

.img-placeholder{
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 18px;
  color: rgba(27,27,27,0.65);
}
.img-placeholder strong{
  display:block;
  letter-spacing: 0.10em;
}
.img-placeholder small{
  display:block;
  margin-top: 6px;
  color: rgba(27,27,27,0.55);
}

/* ===== EXTRA ===== */
.spacer{
  padding: 10px 0 50px;
}
.simple{
  padding: 18px 20px;
}
.simple h3{ margin: 0 0 8px; font-size: 1.05rem; }
.simple p{ margin: 0; color: rgba(27,27,27,0.68); }

/* ===== FOOTER ===== */
.footer{
  padding: 30px 0 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items:flex-start;
}
.footer-brand{
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-muted{
  margin-top: 8px;
  color: rgba(27,27,27,0.60);
  font-size: 0.92rem;
}
.footer-right{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-right a{
  color: rgba(27,27,27,0.65);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.78rem;
}
.footer-right a:hover{ color: var(--ink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .feature-inner{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-text{
    min-height: unset;
  }
  .feature-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

}

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav{
    position: absolute;
    right: 18px;
    top: 68px;
    background: var(--bg);
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 10px;
    min-width: 220px;
  }
  .nav.open{ display:flex; }
  .navlink{ padding: 10px 10px; }
  .btn.book{ text-align:center; }
}

/* ===== Active tab for multi-page ===== */
.navlink.active{
  color: var(--ink);
}

/* Optional: give active link a subtle underline (comment out if you don't want it) */
.navlink.active{
  border-bottom: 1px solid rgba(27,27,27,0.35);
}

/* ===== Image helpers (if you use <img> tags) ===== */
.img-fill{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===== Masonry Gallery ===== */

.masonry-block{
  margin-top: 18px;
}

.masonry-title{
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.masonry-subtitle{
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 80ch;
}

.masonry-divider{
  border: none;
  border-top: 1px solid rgba(0,0,0,0.10);
  margin: 26px 0;
}

.masonry{
  column-gap: 14px;
}

.masonry-3{
  columns: 3;
}

.masonry-item{
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: #f0f0f0;
  box-shadow: var(--shadow);
}

.masonry-item img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

.masonry-item:hover img{
  transform: scale(1.04);
}

@media (max-width: 1024px){
  .masonry-3{ columns: 2; }
}

@media (max-width: 640px){
  .masonry-3{ columns: 1; }
}






/* ===== Top Collage Row (3 across) ===== */

.collage-row{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.collage-card{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  background: #f0f0f0;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; /* makes all 3 equal size */
}

.collage-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

/* subtle premium overlay like your hero */
.collage-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.30), rgba(0,0,0,0.05));
  opacity: 0.95;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.collage-label{
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 10px;
  border-radius: 999px;
}

/* hover */
.collage-card:hover img{
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px){
  .collage-row{
    grid-template-columns: repeat(2, 1fr);
  }
  .collage-card{
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 640px){
  .collage-row{
    grid-template-columns: 1fr;
  }
  .collage-card{
    aspect-ratio: 16 / 10;
  }
}



/* ===== Lightbox ===== */

.lightbox[hidden]{
  display: none;
}

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.lightbox-dialog{
  position: relative;
  width: min(1100px, calc(100% - 32px));
  height: min(84vh, 780px);
  margin: 6vh auto 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  box-shadow: 0 22px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.lightbox-img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 50px 64px 46px; /* space for buttons + caption */
}

.lightbox-caption{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.lightbox-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
}

.lightbox-close:hover{
  background: rgba(0,0,0,0.35);
}

.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.lightbox-nav:hover{
  background: rgba(0,0,0,0.35);
}

.lightbox-nav.prev{ left: 10px; }
.lightbox-nav.next{ right: 10px; }

@media (max-width: 640px){
  .lightbox-img{
    padding: 52px 48px 52px;
  }
  .lightbox-nav{
    width: 40px;
    height: 56px;
  }
}


.card.inset{
  padding: 36px 32px 32px 36px;
}


/* ===== Contact Page ===== */

.contact-layout{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 8px;
}

.contact-image{
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  min-height: 360px;
}

.contact-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-content{
  padding: 6px 4px;
}

.fake-form{
  margin-top: 18px;
}

.fake-row{
  margin-top: 16px;
}

.fake-row.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fake-label{
  font-size: 0.9rem;
  color: rgba(27,27,27,0.70);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.fake-line{
  height: 1px;
  background: rgba(0,0,0,0.22);
  margin-bottom: 8px;
}

.fake-line.tall{
  height: 1px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.fake-value{
  font-size: 0.95rem;
  color: rgba(27,27,27,0.60);
}

.fake-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.btn.fake-btn{
  background: var(--button);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.78rem;
}

.fake-note{
  color: rgba(27,27,27,0.55);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 980px){
  .contact-layout{
    grid-template-columns: 1fr;
  }
  .contact-image{
    min-height: 260px;
  }
  .fake-row.two-col{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ===== Resume PDF Embed ===== */
.resume-actions{
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.resume-link{
  color: rgba(27,27,27,0.65);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.78rem;
}

.resume-link:hover{
  color: var(--ink);
}

.resume-embed{
  margin-top: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.resume-embed iframe{
  width: 100%;
  height: 900px;
  border: 0;
  display: block;
}

.resume-fallback{
  margin-top: 12px;
  color: rgba(27,27,27,0.55);
  font-size: 0.92rem;
}

@media (max-width: 640px){
  .resume-embed iframe{
    height: 720px;
  }
}




/* ===== About Video ===== */

.video-card{
  margin-top: 20px;
  padding: 0;
  overflow: hidden;
}

.video-wrapper{
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-poster,
.video-element{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-element{
  display: none;
}

.video-play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-play:hover{
  transform: scale(1.05);
  background: rgba(0,0,0,0.6);
}

