/*
Theme Name: Dupion Cocktail Room
Theme URI: https://dupion.jaipur
Author: Dupion
Author URI: https://www.instagram.com/dupion.jaipur
Description: A dark, editorial one-page theme for Dupion Cocktail Room, Jaipur — built around a Silk Route brand story, an editable cocktail archive, and a full menu. Manage cocktails from wp-admin under 'Cocktails', and site text/images/links from Appearance > Customize.
Version: 2.1.1
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dupion
*/

:root{
  --ink:#0d0c0a;
  --ink-2:#161310;
  --panel:#1b1713;
  --hair:rgba(230,217,188,0.16);
  --hair-strong:rgba(230,217,188,0.28);
  --ivory:#f2ecdc;
  --ivory-dim:rgba(242,236,220,0.62);
  --ivory-faint:rgba(242,236,220,0.38);
  --parchment:#e7dbbd;
  --parchment-deep:#d9c89c;
  --brass:#ad9260;
  --brass-bright:#c7ab77;
  --copper:#a5623a;
  --burgundy:#6a2530;
  --sage:#747a5c;
  --maxw:1240px;
  --edge:clamp(20px, 5vw, 64px);
  --nav-clear:98px;
  --serif:'Fraunces', 'Georgia', serif;
  --sans:'Work Sans', 'Helvetica Neue', Arial, sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}
body{
  margin:0;
  background:var(--ink);
  color:var(--ivory);
  font-family:var(--sans);
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  position:relative;
}

/* film grain */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:9000;
  pointer-events:none;
  opacity:0.035;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size:140px 140px;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:url('assets/img/map-india-china.jpg');
  background-size:cover;
  background-position:center top;
  opacity:0.07;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4,p{margin:0;}
button{font:inherit;color:inherit;background:none;border:none;cursor:pointer;}
ul{margin:0;padding:0;list-style:none;}

.wrap{max-width:var(--maxw); margin:0 auto; padding-left:var(--edge); padding-right:var(--edge);}

.eyebrow{
  font-family:var(--sans);
  font-size:11.5px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--brass-bright);
  font-weight:500;
}

.hair{height:1px; background:var(--hair); border:none; width:100%;}

/* ---------- Buttons ---------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  font-family:var(--sans);
  font-size:11.5px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  font-weight:500;
  border:1px solid var(--hair-strong);
  color:var(--ivory);
  overflow:hidden;
  isolation:isolate;
  white-space:nowrap;
}
.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--ivory);
  transform:translateX(-101%);
  transition:transform 0.55s cubic-bezier(.65,0,.15,1);
  z-index:-1;
}
.btn:hover::before, .btn:focus-visible::before{ transform:translateX(0); }
.btn:hover, .btn:focus-visible{ color:var(--ink); }
.btn:focus-visible{ outline:1px solid var(--brass-bright); outline-offset:3px; }
.btn.solid{
  background:var(--ivory);
  color:var(--ink);
  border-color:var(--ivory);
}
.btn.solid::before{ background:transparent; }
.btn.solid:hover{ color:var(--ink); background:var(--parchment); }
.btn.small{ padding:11px 22px; font-size:10.5px; }

/* ---------- Nav ---------- */
header.site-nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:500;
  padding:26px var(--edge);
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:padding 0.5s ease, background 0.5s ease, border-color 0.5s ease;
  border-bottom:1px solid transparent;
}
header.site-nav.scrolled{
  padding:14px var(--edge);
  background:rgba(13,12,10,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--hair);
}
.nav-logo{ display:flex; align-items:center; gap:12px; }
.nav-logo img{ height:46px; width:auto; display:block; transition:height 0.5s ease; }
header.site-nav.scrolled .nav-logo img{ height:36px; }
.nav-links{ display:flex; align-items:center; gap:38px; }
.nav-links a{
  font-size:11px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--ivory-dim);
  position:relative;
  padding-bottom:4px;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--brass-bright);
  transition:width 0.4s ease;
}
.nav-links a:hover{ color:var(--ivory); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:22px; }
.burger{
  display:none;
  width:26px; height:18px; position:relative;
  z-index:600;
}
.burger span{
  position:absolute; left:0; right:0; height:1px; background:var(--ivory);
  transition:transform 0.4s ease, opacity 0.3s ease, top 0.4s ease;
}
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:8px; }
.burger span:nth-child(3){ top:16px; }
.burger.open span:nth-child(1){ top:8px; transform:rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ top:8px; transform:rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0; z-index:450;
  background:var(--ink);
  display:flex; flex-direction:column;
  align-items:flex-start; justify-content:center;
  gap:22px;
  padding:0 var(--edge);
  transform:translateY(-100%);
  transition:transform 0.6s cubic-bezier(.65,0,.15,1);
}
.mobile-menu.open{ transform:translateY(0); }
.mobile-menu a:not(.btn){
  font-family:var(--serif);
  font-size:clamp(28px,9vw,46px);
  font-weight:340;
  font-style:italic;
  color:var(--ivory);
}
.mobile-menu .mm-reserve{
  margin-top:20px;
  width:100%;
  justify-content:center;
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  height:100svh;
  min-height:560px;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}
.hero-img{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center 42%;
  transform:scale(1.08);
  animation:heroreveal 2.4s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes heroreveal{ to{ transform:scale(1); } }
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(9,8,7,0.42) 0%, rgba(9,8,7,0.18) 30%, rgba(9,8,7,0.55) 68%, rgba(9,8,7,0.92) 100%),
    linear-gradient(90deg, rgba(9,8,7,0.55) 0%, rgba(9,8,7,0.05) 30%, rgba(9,8,7,0.05) 70%, rgba(9,8,7,0.55) 100%);
}
.hero-content{
  position:relative; z-index:2;
  width:100%;
  padding:0 var(--edge) clamp(48px,8vh,96px);
  opacity:0;
  animation:fadeUp 1.4s ease forwards;
  animation-delay:0.5s;
}
@keyframes fadeUp{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}
.hero-loc{
  font-size:11.5px; letter-spacing:0.32em; text-transform:uppercase;
  color:var(--parchment); margin-bottom:22px; display:flex; align-items:center; gap:10px;
}
.hero-loc::before{ content:""; width:26px; height:1px; background:var(--brass-bright); display:inline-block; }
.hero-title{
  font-family:var(--serif);
  font-weight:340;
  line-height:0.92;
  font-size:clamp(52px, 12vw, 148px);
  color:var(--ivory);
  letter-spacing:-0.01em;
}
.hero-title em{ font-style:italic; font-weight:340; }
.hero-sub{
  font-family:var(--serif);
  font-style:italic;
  font-weight:340;
  font-size:clamp(17px,2.4vw,25px);
  color:var(--parchment);
  margin-top:18px;
  max-width:560px;
}
.hero-actions{
  margin-top:44px;
  display:flex; gap:18px; flex-wrap:wrap;
}
.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  opacity:0.65;
}
.scroll-cue .line{ width:1px; height:38px; background:linear-gradient(var(--ivory), transparent); animation:cuepulse 2.4s ease-in-out infinite; }
@keyframes cuepulse{ 0%,100%{opacity:.3;} 50%{opacity:1;} }
.scroll-cue span{ font-size:9.5px; letter-spacing:0.3em; text-transform:uppercase; color:var(--ivory-dim); }

/* ---------- Section shell ---------- */
section{ position:relative; }
.section-pad{ padding:clamp(40px,6vw,60px) 0; }
.reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-delay-1.in{ transition-delay:0.12s; }
.reveal-delay-2.in{ transition-delay:0.24s; }
.reveal-delay-3.in{ transition-delay:0.36s; }

.coord{
  font-size:10.5px; letter-spacing:0.22em; color:var(--ivory-faint);
  font-variant-numeric:tabular-nums;
}

/* ---------- Silk route intro ---------- */
.route{
  position:relative;
  background:var(--ink-2);
  overflow:hidden;
}
.route::before{
  content:"";
  position:absolute; inset:0;
  background-image:url('__MAP_PERSIA__');
  background-size:cover;
  background-position:center 30%;
  opacity:0.4;
}
.route::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(173,146,96,0.10), transparent 55%),
    linear-gradient(180deg, rgba(13,12,10,0.55) 0%, rgba(13,12,10,0.82) 55%, rgba(13,12,10,0.96) 100%);
}
.route-inner{ position:relative; z-index:2; }
.route-head{ max-width:none; }
.route-head h2{
  font-family:var(--serif); font-weight:340;
  font-size:clamp(34px,5.4vw,64px);
  line-height:1.08;
}
.route-head p{
  margin-top:26px;
  font-size:16.5px; line-height:1.85;
  color:var(--ivory-dim);
  max-width:none;
  font-weight:300;
}
.route-map-wrap{
  position:relative; z-index:2;
  padding:0 var(--edge);
  margin-top:74px;
}
.route-map{
  position:relative;
  height:clamp(280px,42vw,460px);
  border:1px solid var(--hair-strong);
  background:rgba(13,12,10,0.38);
  backdrop-filter:blur(1px);
}
.route-map svg.diagram{ position:absolute; inset:0; width:100%; height:100%; }
.route-path{
  fill:none;
  stroke:var(--brass-bright);
  stroke-width:1.1;
  stroke-dasharray:1400;
  stroke-dashoffset:1400;
  transition:stroke-dashoffset 2.6s cubic-bezier(.2,.7,.2,1);
}
.route-map.in .route-path{ stroke-dashoffset:0; }
.route-node{ fill:var(--ink-2); stroke:var(--parchment); stroke-width:1; }
.route-node-dot{ fill:var(--copper); }
.route-label{
  font-family:var(--sans); font-size:10px; letter-spacing:0.14em; text-transform:uppercase;
  fill:var(--ivory-dim);
}
.glass-wrap{
  position:absolute; right:6%; top:50%; transform:translateY(-58%);
  z-index:3; text-align:center;
  opacity:0; transition:opacity 1s ease 0.4s;
}
.route-map.in .glass-wrap{ opacity:1; }
.glass-wrap svg{ width:clamp(90px,9vw,150px); height:auto; }
.glass-wrap .cap{
  margin-top:8px;
  font-family:var(--serif); font-style:italic; font-size:15px; color:var(--parchment);
}
@media (max-width:780px){
  .glass-wrap{ display:none; }
}

/* ---------- Story split ---------- */
.story{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  align-items:stretch;
}
.story-copy{
  padding:clamp(70px,10vw,140px) var(--edge);
  display:flex; flex-direction:column; justify-content:center;
}
.story-copy .eyebrow{ margin-bottom:24px; }
.story-copy h2{
  font-family:var(--serif); font-weight:340; font-style:italic;
  font-size:clamp(32px,4.2vw,54px);
  line-height:1.16;
  max-width:520px;
}
.story-copy .lede{
  margin-top:30px;
  font-size:17px; line-height:1.9; color:var(--ivory-dim);
  max-width:480px; font-weight:300;
}
.story-copy .credo{
  margin-top:38px;
  font-family:var(--serif); font-style:italic; font-weight:340;
  font-size:clamp(19px,2vw,23px);
  color:var(--parchment);
  border-top:1px solid var(--hair);
  padding-top:28px;
  max-width:460px;
}
.story-visual{
  position:relative;
  background:var(--panel);
  overflow:hidden;
  min-height:420px;
}
.story-visual .map-tex{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 30%;
  opacity:0.88;
}
.story-visual::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(200deg, rgba(13,12,10,0.15) 20%, rgba(13,12,10,0.65) 100%);
}
.story-visual .frame{
  position:absolute; inset:32px;
  border:1px solid var(--hair-strong);
  z-index:2;
}
.story-visual .compass{
  position:absolute; bottom:36px; right:36px; width:110px; height:auto; opacity:0.9;
  z-index:2;
}
.story-visual .credit-mark{
  position:absolute; bottom:36px; left:36px; z-index:2;
  font-family:var(--serif); font-style:italic; font-size:19px; color:var(--parchment);
}

/* ---------- Cocktail archive ---------- */
.cocktails{ background:rgba(13,12,10,0.94); }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:40px;
  flex-wrap:wrap;
  margin-bottom:64px;
}
.section-head h2{
  font-family:var(--serif); font-weight:340;
  font-size:clamp(34px,5vw,58px);
}
.section-head .desc{
  max-width:380px; color:var(--ivory-dim); font-size:15px; line-height:1.7; font-weight:300;
}
.arch-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--hair);
  border:1px solid var(--hair);
}
.arch-card{
  background:var(--ink);
  padding:34px 30px;
  min-height:230px;
  display:flex; flex-direction:column; justify-content:space-between;
  cursor:pointer;
  position:relative;
  transition:background 0.5s ease;
}
.arch-card:nth-child(3n+2){ padding-top:64px; }
.arch-card:nth-child(3n+3){ padding-top:20px; }
.arch-card:hover, .arch-card:focus-visible{ background:var(--ink-2); }
.arch-card .num{
  font-size:11px; color:var(--ivory-faint); letter-spacing:0.1em;
}
.arch-card h3{
  font-family:var(--serif); font-weight:440;
  font-size:clamp(19px,2vw,24px);
  margin-top:20px;
  transition:transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.arch-card:hover h3{ transform:translateX(6px); }
.arch-card .glimpse{
  margin-top:14px; font-size:13px; color:var(--ivory-faint); line-height:1.6;
  max-width:32ch;
}
.arch-card .foot{
  margin-top:26px; display:flex; align-items:center; justify-content:space-between;
}
.arch-card .price{ font-size:12px; color:var(--brass-bright); letter-spacing:0.06em; }
.arch-card .open-ind{
  width:26px; height:26px; border:1px solid var(--hair-strong); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:13px;
  transition:background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.arch-card:hover .open-ind{ background:var(--ivory); color:var(--ink); transform:rotate(45deg); }

.heat-strip{
  margin-top:1px;
  background:var(--panel);
  border:1px solid var(--hair);
  border-top:none;
  padding:44px var(--edge);
}
.heat-inner{ max-width:none; }
.heat-head{ display:flex; align-items:center; gap:18px; margin-bottom:28px; flex-wrap:wrap; }
.heat-head h3{ font-family:var(--serif); font-style:italic; font-weight:340; font-size:26px; color:var(--copper); }
.heat-head .line{ flex:1; height:1px; background:var(--hair); min-width:40px; }
.heat-list{
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
}
.heat-item{ border-left:1px solid var(--hair-strong); padding-left:18px; }
.heat-item h4{ font-family:var(--serif); font-size:19px; font-weight:440; }
.heat-item .price{ font-size:12px; color:var(--ivory-faint); margin-top:8px; display:block; }

/* ---------- Modal ---------- */
.modal-overlay{
  position:fixed; inset:0; z-index:800;
  background:rgba(8,7,6,0.82);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; pointer-events:none;
  transition:opacity 0.5s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal-box{
  width:100%; max-width:560px;
  background:var(--ink-2);
  border:1px solid var(--hair-strong);
  padding:clamp(30px,5vw,56px);
  position:relative;
  transform:translateY(16px) scale(0.98);
  transition:transform 0.5s cubic-bezier(.2,.7,.2,1);
  max-height:86vh;
  overflow-y:auto;
}
.modal-overlay.open .modal-box{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute; top:22px; right:22px;
  width:34px; height:34px; border:1px solid var(--hair-strong);
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
}
.modal-close:hover{ background:var(--ivory); color:var(--ink); }
.modal-box .num{ font-size:11px; color:var(--ivory-faint); letter-spacing:0.1em; }
.modal-box h3{ font-family:var(--serif); font-weight:440; font-size:clamp(28px,4vw,38px); margin-top:14px; }
.modal-box .ingredients{ margin-top:22px; font-size:15.5px; line-height:1.8; color:var(--ivory-dim); font-weight:300; }
.modal-box .price-row{ margin-top:30px; padding-top:24px; border-top:1px solid var(--hair); display:flex; justify-content:space-between; align-items:center; }
.modal-box .price-row .price{ font-family:var(--serif); font-size:22px; color:var(--brass-bright); }

/* ---------- Menu section ---------- */
.menu-sec{
  background:var(--parchment);
  color:var(--ink);
}
.menu-sec .eyebrow{ color:var(--copper); }
.menu-sec .section-head h2{ color:var(--ink); }
.menu-sec .section-head .desc{ color:rgba(13,12,10,0.62); }
.menu-tabs{
  display:flex; gap:8px; margin-bottom:48px; flex-wrap:wrap;
}
.menu-tab{
  padding:11px 22px; font-size:11px; letter-spacing:0.18em; text-transform:uppercase;
  border:1px solid rgba(13,12,10,0.28); color:rgba(13,12,10,0.6);
}
.menu-tab.active{ background:var(--ink); color:var(--parchment); border-color:var(--ink); }
.menu-cols{ display:block; }
.menu-group{ display:none; }
.menu-group.active{ display:block; columns:2; column-gap:80px; }
.menu-group .cat-title{
  font-family:var(--serif); font-style:italic; font-weight:340; font-size:22px;
  color:var(--copper); margin-bottom:6px; column-span:all;
}
.menu-row{
  display:flex; justify-content:space-between; align-items:baseline; gap:16px;
  padding:20px 0; border-bottom:1px solid rgba(13,12,10,0.16);
  break-inside:avoid;
}
.menu-row .mr-left h4{ font-family:var(--serif); font-weight:440; font-size:18px; }
.menu-row .mr-left p{ margin-top:6px; font-size:13px; color:rgba(13,12,10,0.58); max-width:44ch; line-height:1.6; }
.menu-row .mr-price{ font-size:14px; color:var(--ink); white-space:nowrap; font-variant-numeric:tabular-nums; }
.menu-legend{ margin-top:20px; font-size:12px; color:rgba(13,12,10,0.5); }

/* ---------- Experience ---------- */
.experience{
  display:grid; grid-template-columns:0.9fr 1.1fr;
  align-items:stretch;
}
.exp-visual{ position:relative; overflow:hidden; min-height:420px; }
.exp-visual img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; filter:saturate(1.05); }
.exp-visual::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(13,12,10,0.35), transparent 40%); }
.exp-copy{ padding:clamp(60px,9vw,120px) var(--edge); display:flex; flex-direction:column; justify-content:center; }
.exp-copy h2{ font-family:var(--serif); font-weight:340; font-size:clamp(30px,4vw,48px); line-height:1.14; max-width:480px; }
.exp-copy .lede{ margin-top:26px; font-size:16px; line-height:1.85; color:var(--ivory-dim); max-width:460px; font-weight:300; }
.exp-marks{ margin-top:40px; display:grid; grid-template-columns:1fr 1fr; gap:24px 32px; max-width:480px; }
.exp-mark{ border-top:1px solid var(--hair); padding-top:14px; }
.exp-mark .t{ font-family:var(--serif); font-style:italic; font-size:16px; color:var(--parchment); }
.exp-mark .d{ font-size:12.5px; color:var(--ivory-faint); margin-top:6px; line-height:1.6; }

/* ---------- Philosophy ---------- */
.philosophy{ background:rgba(22,19,16,0.94); }
.philosophy .head{ max-width:640px; margin-bottom:70px; }
.philosophy .head h2{ font-family:var(--serif); font-weight:340; font-size:clamp(32px,4.6vw,54px); line-height:1.12; }
.phi-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.phi-item{ padding:0 30px 0 0; border-left:1px solid var(--hair); padding-left:26px; }
.phi-item:first-child{ border-left:none; padding-left:0; }
.phi-item .idx{ font-family:var(--serif); font-style:italic; font-size:15px; color:var(--copper); }
.phi-item h3{ font-family:var(--serif); font-weight:440; font-size:24px; margin-top:22px; letter-spacing:0.02em; }
.phi-item p{ margin-top:16px; font-size:14px; line-height:1.75; color:var(--ivory-dim); font-weight:300; }

/* ---------- Classics teaser ---------- */
.classics-teaser{
  padding:clamp(40px,6vw,60px) 0;
  text-align:center;
}
.classics-teaser h2{
  font-family:var(--serif); font-weight:340; font-style:italic;
  font-size:clamp(30px,6vw,64px);
  max-width:820px; margin:0 auto; line-height:1.15;
}
.classics-teaser p{ margin:28px auto 0; max-width:540px; color:var(--ivory-dim); font-size:16px; line-height:1.85; font-weight:300; }
.classics-teaser .btn{ margin-top:40px; }

/* ---------- Instagram ---------- */
.insta{ background:rgba(13,12,10,0.94); }
.insta-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:30px; margin-bottom:50px; flex-wrap:wrap; }
.insta-head h2{ font-family:var(--serif); font-weight:340; font-size:clamp(32px,5vw,54px); }
.insta-handle{ font-size:14px; color:var(--brass-bright); letter-spacing:0.05em; }
.insta-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:1px; background:var(--hair); border:1px solid var(--hair); }
.insta-tile{
  aspect-ratio:1/1; position:relative; overflow:hidden;
  background:var(--panel);
  display:flex; align-items:center; justify-content:center;
}
.insta-tile .tex{ position:absolute; inset:0; opacity:0.9; }
.insta-tile .ig-mark{ position:relative; z-index:2; opacity:0; transition:opacity 0.4s ease; color:var(--ivory); font-size:22px; }
.insta-tile:hover .ig-mark{ opacity:1; }
.insta-tile:hover{ background:var(--ink-2); }

/* ---------- Visit ---------- */
.visit{ background:rgba(22,19,16,0.94); }
.visit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.visit-copy .eyebrow{ margin-bottom:20px; }
.visit-copy h2{ font-family:var(--serif); font-weight:340; font-size:clamp(34px,5vw,58px); line-height:1.05; }
.visit-copy .loc-line{ margin-top:22px; font-size:15px; color:var(--ivory-dim); line-height:1.8; max-width:40ch; font-weight:300; }
.visit-copy .btn-row{ margin-top:38px; display:flex; gap:16px; flex-wrap:wrap; }
.visit-map{ position:relative; aspect-ratio:1/1; border:1px solid var(--hair-strong); }
.visit-map svg{ width:100%; height:100%; }

/* ---------- Final CTA ---------- */
.final-cta{
  position:relative;
  padding:clamp(40px,6vw,60px) 0;
  text-align:center;
  overflow:hidden;
}
.final-cta .bgtex{ position:absolute; inset:0; opacity:0.5; }
.final-cta h2{
  position:relative; z-index:2;
  font-family:var(--serif); font-weight:340;
  font-size:clamp(42px,8vw,104px);
  line-height:0.98;
}
.final-cta .tag{
  position:relative; z-index:2;
  margin-top:26px; font-family:var(--serif); font-style:italic; font-size:19px; color:var(--parchment);
}
.final-cta .btn-row{ position:relative; z-index:2; margin-top:48px; display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

/* ---------- Footer ---------- */
footer{ background:rgba(13,12,10,0.95); padding:70px 0 34px; }
.foot-top{ display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:40px; padding-bottom:60px; }
.foot-brand img{ height:52px; margin-bottom:18px; display:block; }
.foot-brand .fb-name{ font-family:var(--serif); font-size:15px; letter-spacing:0.08em; }
.foot-brand .fb-loc{ font-size:13px; color:var(--ivory-faint); margin-top:6px; }
.foot-brand .fb-tagline{ font-family:var(--serif); font-style:italic; font-size:14px; color:var(--parchment); margin-top:12px; max-width:34ch; line-height:1.6; }
.foot-col h5{ font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--ivory-faint); margin-bottom:18px; }
.foot-col a{ display:block; font-size:14px; color:var(--ivory-dim); margin-bottom:12px; }
.foot-col a:hover{ color:var(--ivory); }
.foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; flex-wrap:wrap; gap:12px; }
.foot-bottom p{ font-size:12px; color:var(--ivory-faint); }

/* ---------- Interior page banner ---------- */
.page-banner{
  position:relative;
  padding:clamp(160px,22vw,220px) 0 clamp(70px,10vw,110px);
  text-align:left;
  overflow:hidden;
}
.page-banner .wrap{ position:relative; z-index:2; }
.page-banner::before{
  content:"";
  position:absolute; inset:0;
  background-size:cover;
  background-position:center 62%;
  opacity:0.7;
}
.page-banner::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(13,12,10,0.92) 0%, rgba(13,12,10,0.55) 45%, rgba(13,12,10,0.35) 100%);
}
.page-banner h1{
  font-family:var(--serif); font-weight:340;
  font-size:clamp(40px,7vw,84px);
  line-height:1.0;
}
.page-banner p{
  margin-top:20px;
  font-family:var(--serif); font-style:italic; font-weight:340;
  font-size:clamp(16px,1.8vw,20px);
  color:var(--parchment);
  max-width:560px;
}

/* ---------- Home: explore grid ---------- */
.explore-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1px;
  background:var(--hair);
  border:1px solid var(--hair);
}
.explore-card{
  background:var(--ink);
  padding:38px 26px;
  display:flex; flex-direction:column; justify-content:space-between;
  min-height:180px;
  transition:background 0.5s ease;
}
.explore-card:hover{ background:var(--ink-2); }
.explore-card .idx{ font-size:11px; color:var(--ivory-faint); letter-spacing:0.1em; }
.explore-card h3{
  font-family:var(--serif); font-weight:440; font-size:20px; margin-top:18px;
  transition:transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.explore-card:hover h3{ transform:translateX(6px); }
.explore-card .arrow{ margin-top:20px; font-size:18px; color:var(--brass-bright); }
@media (max-width:980px){
  .explore-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px){
  .explore-grid{ grid-template-columns:1fr; }
}
@media (max-width:980px){
  .nav-links, .nav-cta .btn{ display:none; }
  .burger{ display:block; }
  .story, .experience{ grid-template-columns:1fr; }
  .story-visual{ min-height:320px; order:-1; }
  .exp-visual{ min-height:320px; }
  .arch-grid{ grid-template-columns:repeat(2,1fr); }
  .arch-card:nth-child(3n+2), .arch-card:nth-child(3n+3){ padding-top:34px; }
  .heat-list{ grid-template-columns:repeat(2,1fr); }
  .phi-grid{ grid-template-columns:repeat(2,1fr); }
  .phi-item{ border-left:none; padding-left:0; padding-top:26px; border-top:1px solid var(--hair); }
  .phi-item:first-child{ border-top:none; padding-top:0; }
  .menu-group.active{ columns:1; }
  .visit-grid{ grid-template-columns:1fr; }
  .insta-grid{ grid-template-columns:repeat(3,1fr); }
  .foot-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .arch-grid{ grid-template-columns:1fr; }
  .arch-card:nth-child(n){ padding-top:34px; }
  .heat-list{ grid-template-columns:1fr 1fr; }
  .insta-grid{ grid-template-columns:repeat(2,1fr); }
  .foot-top{ grid-template-columns:1fr; gap:36px; }
  .hero-actions{ flex-direction:column; align-items:flex-start; }
  .hero-actions .btn{ width:100%; justify-content:center; }
  .scroll-cue{ display:none; }
}
/* ---------- Secondary SEO footer ---------- */
.seo-footer{
  background:rgba(13,12,10,0.96);
  padding:48px 0 60px;
}
.seo-footer .wrap{ max-width:none; }
.seo-footer .seo-block{
  max-width:none;
  margin-bottom:34px;
}
.seo-footer .seo-block p{ max-width:none; }
.seo-footer .seo-block:last-child{ margin-bottom:0; }
.seo-footer h2{
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ivory-faint);
  font-weight:500;
  margin-bottom:12px;
}
.seo-footer h3{
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ivory-faint);
  font-weight:500;
  margin-bottom:12px;
}
.seo-footer p{
  font-size:12.5px;
  line-height:1.8;
  color:var(--ivory);
  font-weight:300;
}
.seo-footer a{
  color:rgba(199,171,119,0.75);
  text-decoration:underline;
  text-decoration-color:rgba(199,171,119,0.3);
  text-underline-offset:2px;
}
.seo-footer a:hover{ color:var(--brass-bright); }
.seo-tag-list{
  display:flex; flex-wrap:wrap; gap:8px 18px;
  list-style:none; margin:0; padding:0;
}
.seo-tag-list li{ font-size:12.5px; }
.seo-tag-list a{ text-decoration:none; border-bottom:1px solid rgba(199,171,119,0.3); }
.seo-tag-list a:hover{ border-color:var(--brass-bright); }
.seo-visit-us p{ display:flex; flex-wrap:wrap; gap:4px 4px; align-items:center; }
.seo-faq-item{
  border-bottom:1px solid var(--hair);
  padding:14px 0;
}
.seo-faq-item summary{
  font-size:13px;
  color:rgba(242,236,220,0.55);
  cursor:pointer;
  list-style:revert;
}
.seo-faq-item summary::marker{ color:var(--brass-bright); }
.seo-faq-item[open] summary{ color:var(--ivory-dim); }
.seo-faq-item p{ margin-top:10px; padding-left:2px; }

@media (max-width:600px){
  .seo-footer{ padding:36px 0 44px; }
  .seo-visit-us p{ flex-direction:column; align-items:flex-start; gap:6px; }
}

/* ---------- Floating WhatsApp button + popup ---------- */
.wa-widget{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:700;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:16px;
}
.whatsapp-float{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,0.35);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  cursor:pointer;
  flex-shrink:0;
}
.whatsapp-float:hover{
  transform:scale(1.08);
  box-shadow:0 6px 20px rgba(0,0,0,0.45);
}
.whatsapp-float:focus-visible{
  outline:2px solid var(--brass-bright);
  outline-offset:3px;
}
.mobile-menu.open ~ .wa-widget{
  opacity:0;
  pointer-events:none;
}

.wa-popup{
  width:320px;
  max-width:calc(100vw - 48px);
  background:var(--parchment);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,0.5);
  opacity:0;
  transform:translateY(16px) scale(0.96);
  pointer-events:none;
  transition:opacity 0.35s cubic-bezier(.2,.7,.2,1), transform 0.35s cubic-bezier(.2,.7,.2,1);
  transform-origin:bottom right;
}
.wa-popup.open{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}
.wa-popup-header{
  background:#128C4A;
  padding:16px 44px 16px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
}
.wa-avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  overflow:hidden;
  border:2px solid rgba(255,255,255,0.4);
}
.wa-avatar img{ width:78%; height:auto; object-fit:contain; }
.wa-popup-title{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.wa-popup-title strong{
  font-family:var(--sans); font-size:14.5px; font-weight:600; color:#fff;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.wa-status{ display:flex; align-items:center; gap:6px; font-size:12px; color:rgba(255,255,255,0.85); }
.wa-dot{ width:7px; height:7px; border-radius:50%; background:#6cf07a; display:inline-block; }
.wa-popup-close{
  position:absolute; top:12px; right:12px;
  width:26px; height:26px; border-radius:50%;
  border:none; background:rgba(255,255,255,0.18); color:#fff;
  font-size:16px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.wa-popup-close:hover{ background:rgba(255,255,255,0.3); }
.wa-popup-body{ padding:18px 16px 6px; }
.wa-bubble{
  background:#fff;
  border-radius:12px;
  border-top-left-radius:2px;
  padding:14px 16px;
  font-family:var(--sans);
  font-size:13.5px;
  line-height:1.6;
  color:#2b2820;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.wa-popup-cta{
  display:flex; align-items:center; justify-content:center; gap:9px;
  margin:16px;
  padding:13px 18px;
  background:#25D366;
  color:#fff;
  font-family:var(--sans);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border-radius:10px;
  transition:background 0.25s ease;
}
.wa-popup-cta:hover{ background:#1fbd5a; }

@media (max-width:600px){
  .wa-widget{ right:16px; bottom:16px; }
  .whatsapp-float{ width:50px; height:50px; }
  .wa-popup{ width:290px; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float, .wa-popup{ transition:none; }
}

/* ---------- Blog: listing + single post + sidebar ---------- */
.blog-layout{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:70px;
  align-items:start;
}
.blog-layout.no-sidebar{ grid-template-columns:1fr; max-width:820px; }
.blog-main{ min-width:0; }

/* Blog listing cards */
.blog-card{
  display:flex; gap:32px;
  padding:34px 0;
  border-bottom:1px solid var(--hair);
}
.blog-card:first-child{ padding-top:0; }
.blog-card-thumb{
  flex:0 0 clamp(200px,26vw,300px);
  display:block;
  overflow:hidden;
  border:1px solid var(--hair-strong);
  aspect-ratio:4/3;
}
.blog-card-thumb img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.6s ease; }
.blog-card-thumb:hover img{ transform:scale(1.05); }
.blog-card-body{ flex:1; min-width:0; }
.blog-card-title{
  font-family:var(--serif); font-weight:440; font-size:24px; line-height:1.25;
  margin-top:2px;
}
.blog-card-title a{ color:var(--ivory); }
.blog-card-title a:hover{ color:var(--brass-bright); }
.blog-card-excerpt{
  margin-top:12px; font-size:14.5px; line-height:1.75; color:var(--ivory-dim); font-weight:300;
  max-width:60ch;
}
.blog-card-excerpt p{ margin:0; }
.blog-card .btn.small{ margin-top:18px; }

.blog-pagination{ margin-top:50px; display:flex; justify-content:center; }
.blog-pagination .page-numbers{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:38px; height:38px; margin:0 4px; padding:0 10px;
  border:1px solid var(--hair-strong); font-size:12px; letter-spacing:0.06em;
  color:var(--ivory-dim);
}
.blog-pagination .page-numbers.current{ background:var(--ivory); color:var(--ink); border-color:var(--ivory); }
.blog-pagination a.page-numbers:hover{ border-color:var(--brass-bright); color:var(--brass-bright); }

/* Shared meta / category tags (listing + single) */
.single-post-cats{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:10px; }
.single-post-cats a{
  font-size:10.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--copper);
  border-bottom:1px solid rgba(165,98,58,0.4);
}
.single-post-cats a:hover{ color:var(--brass-bright); border-color:var(--brass-bright); }
.single-post-meta{
  font-size:12.5px; color:var(--ivory-faint); display:flex; align-items:center; gap:8px; flex-wrap:wrap;
}
.single-post-meta .dot{ opacity:0.6; }

/* Single post */
.single-post-thumb{
  width:100%; height:clamp(260px,42vw,520px); overflow:hidden;
  margin-bottom:0;
}
.single-post-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
article.single-post{ padding-top:clamp(60px,9vw,110px); }
article.single-post:has(.single-post-thumb){ padding-top:0; }
.single-post-thumb{ margin-top:var(--nav-clear); }
.single-post .wrap{ padding-top:clamp(50px,7vw,80px); }
.single-post-layout{
  display:grid; grid-template-columns:1fr 320px; gap:70px; align-items:start;
  padding-bottom:clamp(60px,8vw,100px);
}
.single-post-layout.no-sidebar{ grid-template-columns:1fr; max-width:760px; margin:0 auto; }
.single-post-title{
  font-family:var(--serif); font-weight:340; font-size:clamp(32px,5vw,52px); line-height:1.1;
}
.single-post-meta{ margin-top:18px; padding-bottom:28px; border-bottom:1px solid var(--hair); }
.single-post-content{
  margin-top:34px; font-size:16.5px; line-height:1.9; color:var(--ivory-dim); font-weight:300;
}
.single-post-content p{ margin:0 0 24px; }
.single-post-content h2{ font-family:var(--serif); font-weight:440; font-size:28px; color:var(--ivory); margin:44px 0 18px; }
.single-post-content h3{ font-family:var(--serif); font-weight:440; font-size:22px; color:var(--ivory); margin:36px 0 16px; }
.single-post-content a{ color:var(--brass-bright); text-decoration:underline; text-decoration-color:rgba(199,171,119,0.35); }
.single-post-content img{ max-width:100%; height:auto; margin:12px 0; }
.single-post-content blockquote{
  margin:32px 0; padding:4px 0 4px 24px; border-left:2px solid var(--brass);
  font-family:var(--serif); font-style:italic; font-size:19px; color:var(--parchment);
}
.single-post-content ul, .single-post-content ol{ padding-left:22px; margin:0 0 24px; }
.single-post-content li{ margin-bottom:8px; }
.page-links{ margin-top:20px; font-size:13px; color:var(--ivory-faint); }
.page-links a{ color:var(--brass-bright); margin:0 4px; }

.single-post-tags{ margin-top:38px; display:flex; flex-wrap:wrap; gap:10px; }
.single-post-tags a{
  font-size:12px; padding:7px 14px; border:1px solid var(--hair-strong); color:var(--ivory-dim);
}
.single-post-tags a:hover{ border-color:var(--brass-bright); color:var(--brass-bright); }

/* Related posts */
.related-posts{ margin-top:60px; padding-top:40px; border-top:1px solid var(--hair); }
.related-posts h3{ font-family:var(--serif); font-weight:340; font-style:italic; font-size:24px; margin-bottom:26px; }
.related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.related-card{ display:block; }
.related-thumb{ display:block; overflow:hidden; border:1px solid var(--hair-strong); margin-bottom:14px; }
.related-thumb img{ width:100%; height:140px; object-fit:cover; display:block; transition:transform 0.6s ease; }
.related-card:hover .related-thumb img{ transform:scale(1.05); }
.related-title{ display:block; font-family:var(--serif); font-weight:440; font-size:16px; color:var(--ivory); line-height:1.3; }
.related-card:hover .related-title{ color:var(--brass-bright); }
.related-date{ display:block; margin-top:8px; font-size:11.5px; color:var(--ivory-faint); }

/* Comments (default WP markup) */
.single-post-comments{ margin-top:60px; padding-top:40px; border-top:1px solid var(--hair); }
.single-post-comments h2, .single-post-comments h3{ font-family:var(--serif); font-weight:340; font-size:24px; margin-bottom:24px; }
.single-post-comments ol.comment-list{ list-style:none; margin:0; padding:0; }
.single-post-comments .comment-body{ padding:20px 0; border-bottom:1px solid var(--hair); font-size:14.5px; color:var(--ivory-dim); }
.single-post-comments .comment-author .fn{ font-family:var(--serif); font-style:normal; color:var(--ivory); font-weight:440; }
.single-post-comments .comment-metadata{ font-size:11.5px; color:var(--ivory-faint); margin-bottom:8px; }
.single-post-comments input[type="text"],
.single-post-comments input[type="email"],
.single-post-comments input[type="url"],
.single-post-comments textarea{
  width:100%; background:var(--ink-2); border:1px solid var(--hair-strong); color:var(--ivory);
  padding:12px 14px; font-family:var(--sans); font-size:14px; margin-bottom:16px;
}
.single-post-comments .form-submit input{
  padding:13px 26px; font-size:11px; letter-spacing:0.18em; text-transform:uppercase;
  background:var(--ivory); color:var(--ink); border:none; cursor:pointer;
}

/* Sidebar */
.blog-sidebar{
  display:flex; flex-direction:column; gap:44px;
  position:sticky;
  top:calc(var(--nav-clear) + 30px);
  align-self:start;
}
.blog-sidebar .widget-title{
  font-family:var(--sans); font-size:11px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--ivory-faint); font-weight:500; margin-bottom:18px;
}
.blog-sidebar ul{ list-style:none; margin:0; padding:0; }
.blog-sidebar li{ padding:10px 0; border-bottom:1px solid var(--hair); font-size:14px; }
.blog-sidebar li:first-child{ padding-top:0; }
.blog-sidebar a{ color:var(--ivory-dim); }
.blog-sidebar a:hover{ color:var(--brass-bright); }
.blog-sidebar .widget_categories li span{ color:var(--ivory-faint); font-size:12px; }
.blog-sidebar .search-form{ display:flex; border:1px solid var(--hair-strong); }
.blog-sidebar .search-form label{ flex:1; margin:0; }
.blog-sidebar .search-field{
  width:100%; background:transparent; border:none; color:var(--ivory);
  padding:12px 14px; font-family:var(--sans); font-size:13px;
}
.blog-sidebar .search-submit{
  padding:0 18px; background:var(--ivory); color:var(--ink); border:none;
  font-size:11px; letter-spacing:0.12em; text-transform:uppercase; cursor:pointer;
}

@media (max-width:900px){
  .blog-layout, .single-post-layout{ grid-template-columns:1fr; gap:50px; }
  .blog-sidebar{ position:static; }
  .blog-card{ flex-direction:column; }
  .blog-card-thumb{ flex:none; width:100%; }
  .related-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .related-grid{ grid-template-columns:1fr; }
}
