/* ============================================================
   NISARG HOTEL — Kesnand, Pune
   "Heritage Estate" identity — a boutique garden hotel at dusk:
   deep bottle-green dark ground, antique brass, terracotta clay,
   ivory paper. Signature device: the jharokha arch (the carved
   window-arch of a Maharashtrian wada/haveli) used to frame
   photography and mark thresholds between sections.
   Display: Fraunces | Body: Work Sans | Utility: IBM Plex Mono
   ============================================================ */

@import url('theme.css');

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(201,160,85,0.35); color: var(--ivory); }

body {
  font-family: var(--font-body);
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 10% 0%, rgba(201,160,85,0.09), transparent 40%),
    radial-gradient(circle at 92% 18%, rgba(76,122,90,0.14), transparent 46%),
    radial-gradient(circle at 50% 100%, rgba(189,102,64,0.06), transparent 55%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 450; line-height: 1.12; color: var(--ivory); letter-spacing: 0.003em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); display: inline-block; }

/* ---------- Arch divider (signature motif) ---------- */
.vine-divider { width: 100%; height: 30px; margin: 4px 0 8px; opacity: 0.9; }
.vine-divider path { stroke: rgba(228,197,131,0.4); }
.vine-divider circle, .vine-divider ellipse { fill: var(--gold); }

.arch-row { display: flex; justify-content: center; gap: 10px; margin: 0 0 8px; opacity: 0.75; }
.arch-row span {
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 40px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.16) 45%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateX(120%); }

.btn-primary { background: var(--gold); color: var(--ink-deep); box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(201,160,85,0.28); }
.btn-outline { background: transparent; color: var(--ivory); border: 1.5px solid rgba(246,239,223,0.35); }
.btn-outline:hover { background: rgba(246,239,223,0.06); border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-3px); }
.btn-brass { background: transparent; color: var(--gold-light); border: 1.5px solid var(--gold-dim); }
.btn-brass:hover { background: var(--gold); color: var(--ink-deep); border-color: var(--gold); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(16,32,26,0.35);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(201,160,85,0.10);
  transition: box-shadow 0.35s ease, background 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(2,6,4,0.4); background: rgba(11,23,18,0.86); border-bottom-color: rgba(201,160,85,0.2); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding 0.35s ease;
}
.site-header.scrolled .nav { padding: 15px 28px; }
.logo {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.6rem;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo span { font-family: var(--font-mono); font-style: normal; font-size: 0.58rem; letter-spacing: 0.26em; color: var(--gold-light); margin-top: 7px; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: var(--ivory-soft); position: relative; padding: 4px 0; transition: color 0.25s ease; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold-light);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 26px; height: 1.5px; background: var(--ivory); border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(82vw, 360px); height: 100vh;
  background: linear-gradient(165deg, var(--ink-deep), var(--panel));
  border-left: 1px solid rgba(201,160,85,0.18);
  z-index: 900;
  transition: right 0.4s var(--ease);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 30px;
  box-shadow: -30px 0 70px rgba(2,6,4,0.4);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--ivory); font-family: var(--font-display); font-style: italic; font-size: 1.4rem; transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
.mobile-menu a:hover { color: var(--gold-light); transform: translateX(4px); }
.mobile-menu .close-mobile { align-self: flex-end; background: none; border: none; color: var(--ivory); font-size: 1.7rem; cursor: pointer; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(2,6,4,0.6); backdrop-filter: blur(2px); z-index: 800; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,160,85,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at 30% 30%, black, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 180px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-tag {
  font-family: var(--font-mono); color: var(--gold-light); font-size: 0.76rem;
  letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 26px; display: block;
}
.hero h1 { color: var(--ivory); font-size: clamp(2.6rem, 5.3vw, 4.4rem); margin-bottom: 26px; font-weight: 350; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p { color: var(--ivory-soft); font-size: 1.08rem; max-width: 480px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 54px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; align-items: center; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats .num { font-family: var(--font-display); font-style: italic; font-size: 1.9rem; color: var(--gold-light); font-weight: 500; }
.hero-stats .label { font-size: 0.72rem; color: var(--ivory-dim); letter-spacing: 0.05em; font-family: var(--font-mono); }
.badge {
  background: rgba(76,122,90,0.14); border: 1px solid rgba(111,164,127,0.35);
  padding: 10px 18px; border-radius: 30px; color: var(--moss-light);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em;
}

/* Jharokha arch frame — signature device wrapping key photography */
.hero-visual {
  position: relative; height: 560px;
  border-radius: 220px 220px 6px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(201,160,85,0.3);
  animation: floatSlow 8s ease-in-out infinite;
}
.hero-visual::before {
  content: ''; position: absolute; inset: 10px;
  border-radius: 210px 210px 2px 2px;
  border: 1px solid rgba(201,160,85,0.35);
  pointer-events: none; z-index: 3;
}
@keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 9s var(--ease); }
.hero-visual:hover img { transform: scale(1.08); }
.hero-visual .badge {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(11,23,18,0.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,160,85,0.4); padding: 14px 20px; border-radius: 30px;
  color: var(--ivory); font-family: var(--font-mono); font-size: 0.75rem;
}

/* Frame-corner accent — used on hero, feature cards, reserve panel */
.frame-corners { position: relative; }
.frame-corners::before, .frame-corners::after { content:''; position:absolute; width:26px; height:26px; pointer-events:none; z-index: 4; }
.frame-corners::before { top:-1px; left:-1px; border-top:1.5px solid var(--gold-light); border-left:1.5px solid var(--gold-light); }
.frame-corners::after { bottom:-1px; right:-1px; border-bottom:1.5px solid var(--gold-light); border-right:1.5px solid var(--gold-light); }

/* ---------- Section shared ---------- */
section { padding: 130px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 3.5vw, 2.9rem); font-weight: 350; }
.section-head h2 em { font-style: italic; color: var(--gold-light); }
.section-head p { margin-top: 18px; color: var(--ivory-soft); font-size: 1.02rem; }

.section-dark {
  background:
    radial-gradient(circle at 12% 8%, rgba(201,160,85,0.08), transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(76,122,90,0.13), transparent 45%),
    var(--ink-deep);
  color: var(--ivory);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ivory); }
.section-dark .section-head p { color: var(--ivory-soft); }

section:not(.hero)::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(90%, 900px); height: 1px; background: var(--gold-hairline); opacity: 0.6;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 68px; align-items: center; }
.about-img {
  position: relative; overflow: hidden; box-shadow: var(--shadow-deep); height: 480px;
  border-radius: 6px 6px 200px 6px;
}
.about-img::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(201,160,85,0.3); pointer-events: none; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.about-img:hover img { transform: scale(1.05); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.feature-card {
  background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 24px 22px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); border-color: rgba(201,160,85,0.4); }
.feature-card .icon { font-size: 1.5rem; margin-bottom: 14px; display: block; filter: sepia(0.3) saturate(1.4); }
.feature-card h4 { font-size: 1rem; margin-bottom: 7px; color: var(--ivory); font-weight: 450; }
.feature-card p { font-size: 0.87rem; color: var(--ivory-dim); }

/* ---------- Menu (fine-dining tasting card, dotted price leaders) ---------- */
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.menu-tab {
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; padding: 11px 22px; border-radius: 30px;
  border: 1px solid rgba(201,160,85,0.32); background: transparent; color: var(--ivory-soft);
  cursor: pointer; transition: 0.3s var(--ease); display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase;
}
.menu-tab.active, .menu-tab:hover { background: var(--gold); color: var(--ink-deep); border-color: var(--gold); transform: translateY(-2px); }
.tab-icon { font-size: 1rem; line-height: 1; }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 56px; max-width: 980px; margin-left: auto; margin-right: auto; }
.leaf-card {
  position: relative; background: transparent;
  padding: 22px 0; border-bottom: 1px solid rgba(201,160,85,0.16);
  transition: transform 0.3s var(--ease);
}
.leaf-card::before { content: none; }
.leaf-cat-icon { position: absolute; top: 20px; right: 0; font-size: 1.05rem; opacity: 0.6; }
.leaf-card:hover { transform: translateX(4px); }
.leaf-card:hover .row h4 { color: var(--gold-light); }
.leaf-card .row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; padding-right: 30px;
}
.leaf-card .row h4 {
  font-size: 1.08rem; color: var(--ivory); font-weight: 450; white-space: nowrap;
  position: relative; transition: color 0.25s ease;
}
.leaf-card .price {
  font-family: var(--font-mono); color: var(--gold-light); font-weight: 500; white-space: nowrap; font-size: 0.95rem;
  flex-shrink: 0;
}
.leaf-card .row::after {
  content: ''; flex: 1; border-bottom: 1px dotted rgba(246,239,223,0.28); margin: 0 4px 4px;
  min-width: 24px;
}
.leaf-card p { font-size: 0.86rem; color: var(--ivory-dim); padding-right: 30px; }
.veg-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 9px; position: relative; top: -1px; }
.veg-dot.veg { background: var(--moss-light); border: 1.5px solid var(--moss-light); box-shadow: 0 0 0 2px rgba(111,164,127,0.18); }
.veg-dot.nonveg { background: var(--clay); border: 1.5px solid var(--clay); box-shadow: 0 0 0 2px rgba(189,102,64,0.18); }
.menu-empty { text-align: center; color: var(--ivory-dim); font-family: var(--font-mono); padding: 44px 0; grid-column: 1 / -1; }
.menu-footnote { text-align: center; margin-top: 50px; font-size: 0.85rem; color: var(--ivory-dim); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 18px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-grid a { overflow: hidden; display: block; border: 1px solid var(--panel-border); position: relative; }
.gallery-grid a::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(2,6,4,0.2), transparent 40%); opacity:0; transition: opacity 0.3s ease; }
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a:hover img { transform: scale(1.1); }
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ---------- Gallery auto-slideshow tile ---------- */
.gallery-slideshow {
  grid-column: span 2;
  grid-row: span 2;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-soft);
  background: var(--panel);
  position: relative;
  border-radius: 4px 90px 4px 4px;
}
.gallery-slideshow.gallery-slideshow-full {
  grid-column: 1 / -1;
  height: 480px;
}
.gallery-slideshow .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: translateX(4%) scale(1.03);
  transition: opacity 0.9s var(--ease), transform 1.3s var(--ease);
  z-index: 0;
}
.gallery-slideshow .slide.active { opacity: 1; transform: translateX(0) scale(1); z-index: 2; }
.gallery-slideshow .slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,6,4,0.55), transparent 45%);
}
.gallery-slideshow .slide-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
  padding: 24px;
}
.gallery-slideshow .slide-text p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1.4;
}
.gallery-slideshow .slide-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 3;
}
.gallery-slideshow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(246,239,223,0.4);
  box-shadow: 0 0 0 1px rgba(2,6,4,0.2);
  cursor: pointer; transition: background 0.25s ease, transform 0.25s ease;
}
.gallery-slideshow .dot.active { background: var(--gold-light); transform: scale(1.3); }

/* ---------- Reservation ---------- */
#reserve { background: radial-gradient(circle at 88% 12%, rgba(201,160,85,0.08), transparent 42%), var(--ink); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: flex-start; }
.reserve-form {
  background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%); padding: 40px;
  border-radius: var(--radius); border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-deep);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.72rem; font-family: var(--font-mono); letter-spacing: 0.05em; text-transform: uppercase; color: var(--ivory-dim); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 15px; border-radius: 3px; border: 1px solid rgba(201,160,85,0.22);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--ink-deep); color: var(--ivory);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(246,239,223,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(201,160,85,0.14); }
.reserve-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

.info-list { display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; gap: 20px; }
.info-item .ic {
  width: 46px; height: 46px; border-radius: 50%; background: var(--panel); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
  border: 1px solid rgba(201,160,85,0.3);
}
.info-item h4 { font-size: 1rem; margin-bottom: 5px; color: var(--ivory); font-weight: 450; }
.info-item p, .info-item a { font-size: 0.9rem; color: var(--ivory-soft); }
.map-embed { border-radius: 3px; overflow: hidden; margin-top: 14px; height: 230px; border: 1px solid var(--panel-border); filter: grayscale(0.4) sepia(0.15) brightness(0.9) contrast(1.05); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  color: var(--ivory-dim); padding: 70px 0 28px; border-top: 1px solid rgba(201,160,85,0.16);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-grid h4 { color: var(--ivory); font-size: 0.82rem; margin-bottom: 20px; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-grid ul { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-logo { font-family: var(--font-display); font-style: italic; font-size: 1.8rem; color: var(--ivory); margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid rgba(201,160,85,0.14); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }
.footer-bottom a { font-family: var(--font-mono); font-size: 0.72rem; opacity: 0.7; transition: opacity 0.2s ease; }
.footer-bottom a:hover { opacity: 1; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; box-shadow: 0 12px 30px rgba(2,6,4,0.45); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.07);} }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Founder signature ---------- */
.hero-visual-wrap { position: relative; margin-bottom: 20px; }
.founder-signature-role { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 6px; }
.founder-signature-name { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--ivory); line-height: 1.2; display: block; margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .container { padding: 0 24px; }
  .menu-grid { grid-template-columns: 1fr; gap: 4px; max-width: 640px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { height: 420px; order: -1; border-radius: 140px 140px 6px 6px; }
  .hero-visual::before { border-radius: 132px 132px 2px 2px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img { height: 340px; border-radius: 6px 6px 140px 6px; }
  .reserve-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; }
  .gallery-slideshow.gallery-slideshow-full { height: 380px; }
  section { padding: 90px 0; }
  .nav-links { gap: 26px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  section { padding: 76px 0; }
  .form-row { grid-template-columns: 1fr; margin-bottom: 0; }
  .hero { padding: 126px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 28px; }
  .hero-visual { height: 300px; border-radius: 90px 90px 6px 6px; }
  .hero-visual::before { border-radius: 82px 82px 2px 2px; }
  .hero-visual-wrap { margin-bottom: 8px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .gallery-slideshow.gallery-slideshow-full { height: 280px; }
  .nav { padding: 16px 20px; }
  .logo { font-size: 1.3rem; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 11px 16px; font-size: 0.72rem; }
  .reserve-form { padding: 28px 20px; }
  .wa-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 20px; }
  .leaf-card .row h4 { white-space: normal; }
}

@media (max-width: 400px) {
  .nav-cta .btn-brass span, .nav-cta .btn-primary span { display: none; }
}
