:root{
  --bg:#15100E;
  --surface:#241A15;
  --coral:#D95F43;
  --coral-light:#E27254;
  --white:#F7F1EA;
  --cream:#EDE3DA;
  --tan:#A58D7A;
  --hairline:#3A2B22;
  --blush:#FBE4DC;
}

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

html{scroll-behavior:smooth}

body{
  font-size:16px;
  font-family:Georgia,"Times New Roman",serif;
  background-color:#15100E;
  color:#EDE3DA;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;display:block}

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

a{color:#E27254}

.eyebrow{
  display:inline-block;
  background-color:#D95F43;
  color:#F7F1EA;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  padding:7px 16px;
  border-radius:999px;
}

.section-kicker{
  color:#D95F43;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
}

.section-title{
  color:#F7F1EA;
  font-size:2.3rem;
  line-height:1.15;
  margin:14px 0 16px;
}

.section-intro{
  color:#A58D7A;
  max-width:680px;
  margin:0 auto;
  font-size:1.05rem;
}

/* ---------- Buttons ---------- */

.btn{
  display:inline-block;
  padding:15px 32px;
  border-radius:6px;
  font-size:1rem;
  font-weight:700;
  text-decoration:none;
  letter-spacing:0.02em;
  border:2px solid transparent;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease;
}

.btn-primary{
  background-color:#D95F43;
  color:#F7F1EA;
}

.btn-primary:hover{
  background-color:#E27254;
}

.btn-outline{
  border-color:#F7F1EA;
  color:#F7F1EA;
}

.btn-outline:hover{
  background-color:#F7F1EA;
  color:#15100E;
}

.btn-ghost-coral{
  border-color:#D95F43;
  color:#D95F43;
}

.btn-ghost-coral:hover{
  background-color:#D95F43;
  color:#F7F1EA;
}

/* ---------- Hero-Embedded Nav ---------- */

.hero-nav{
  position:sticky;
  top:0;
  z-index:50;
  background-color:#241A15;
  border-bottom:1px solid #3A2B22;
}

.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-chip{
  position:relative;
  width:42px;
  height:42px;
  background-color:#D95F43;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.brand-chip .chip-plate{
  position:relative;
  width:22px;
  height:22px;
  border-radius:50%;
  border:3px solid #F7F1EA;
}

.brand-chip .chip-plate::before,
.brand-chip .chip-plate::after{
  content:"";
  position:absolute;
  top:50%;
  width:4px;
  height:22px;
  border-radius:2px;
  background-color:#F7F1EA;
  transform:translateY(-50%);
}

.brand-chip .chip-plate::before{
  left:-10px;
}

.brand-chip .chip-plate::after{
  right:-10px;
}

.brand-name{
  font-size:21px;
  font-weight:700;
  color:#F7F1EA;
  letter-spacing:0.06em;
}

.brand-name .brand-tag{
  color:#D95F43;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-links a{
  color:#EDE3DA;
  text-decoration:none;
  font-size:0.95rem;
  letter-spacing:0.03em;
  padding-bottom:5px;
  border-bottom:2px solid transparent;
  transition:color .2s ease,border-color .2s ease;
}

.nav-links a:hover{
  color:#D95F43;
  border-bottom-color:#D95F43;
}

.nav-links a.active{
  color:#D95F43;
  border-bottom-color:#D95F43;
}

.nav-toggle{
  display:none;
  background:none;
  border:1px solid #3A2B22;
  border-radius:8px;
  width:46px;
  height:46px;
  cursor:pointer;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background-color:#F7F1EA;
  border-radius:2px;
  transition:transform .2s ease,background-color .2s ease;
}

.nav-toggle.open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2){
  transform:scaleX(0);
}

.nav-toggle.open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* ---------- Trio Hero ---------- */

.trio-hero{
  background-color:#15100E;
  padding:64px 0 92px;
}

.hero-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1.7fr 1fr;
  gap:34px;
  align-items:center;
}

.gfx-chip{
  background-color:#241A15;
  border:1px solid #3A2B22;
  border-radius:18px;
  padding:36px 22px;
  min-height:390px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-center{
  text-align:left;
}

.hero-title{
  color:#F7F1EA;
  font-size:3.05rem;
  line-height:1.08;
  margin:24px 0 20px;
  letter-spacing:-0.01em;
}

.hero-title .accent{
  color:#D95F43;
}

.hero-sub{
  color:#EDE3DA;
  font-size:1.1rem;
  max-width:600px;
  margin-bottom:30px;
}

.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:36px;
}

.stat-line{
  display:flex;
  align-items:center;
  gap:22px;
}

.stat-line .stat{
  color:#F7F1EA;
  font-size:1.5rem;
  font-weight:700;
}

.stat-line .stat small{
  display:block;
  color:#A58D7A;
  font-size:0.78rem;
  font-weight:400;
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-top:3px;
}

.stat-line .divider{
  width:1px;
  height:40px;
  background-color:#D95F43;
}

/* ---------- Banquet & Feast Graphics ---------- */

.banquet-gfx{
  position:relative;
  width:250px;
  height:330px;
}

.feast-gfx{
  position:relative;
  width:270px;
  height:350px;
}

.gfx-coupe{
  position:absolute;
  top:52px;
  left:50%;
  transform:translateX(-50%);
  width:150px;
  height:190px;
  z-index:2;
}

.coupe-bowl{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:132px;
  height:64px;
  border:4px solid #D95F43;
  border-radius:0 0 76px 76px;
  background-color:#241A15;
  overflow:hidden;
}

.coupe-liquid{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:26px;
  background-color:#E27254;
  border-radius:0 0 72px 72px;
}

.coupe-bubble{
  position:absolute;
  bottom:6px;
  left:50%;
  border-radius:50%;
  background-color:#EDE3DA;
  animation:rise 2.6s infinite ease-in-out;
}

.coupe-bubble.b1{width:8px;height:8px;margin-left:-20px;animation-delay:0s}
.coupe-bubble.b2{width:5px;height:5px;margin-left:4px;animation-delay:.8s}
.coupe-bubble.b3{width:10px;height:10px;margin-left:-6px;animation-delay:1.5s}
.coupe-bubble.b4{width:6px;height:6px;margin-left:14px;animation-delay:2.1s}

@keyframes rise{
  0%{transform:translate(0,0) scale(1)}
  100%{transform:translate(-12px,-78px) scale(0.15)}
}

.coupe-stem{
  position:absolute;
  top:64px;
  left:50%;
  transform:translateX(-50%);
  width:9px;
  height:48px;
  background-color:#D95F43;
  border-radius:5px;
}

.coupe-base{
  position:absolute;
  top:112px;
  left:50%;
  transform:translateX(-50%);
  width:96px;
  height:11px;
  background-color:#D95F43;
  border-radius:9px;
}

.gfx-candle{
  position:absolute;
  top:6px;
  left:4px;
  width:22px;
  height:112px;
  z-index:3;
}

.candle-flame{
  position:relative;
  width:20px;
  height:30px;
  margin:0 auto;
  background-color:#D95F43;
  border-radius:50% 50% 50% 50% / 62% 62% 38% 38%;
  transform-origin:50% 100%;
  animation:flicker 1.7s infinite ease-in-out;
}

.candle-flame::before{
  content:"";
  position:absolute;
  bottom:3px;
  left:50%;
  transform:translateX(-50%);
  width:9px;
  height:13px;
  background-color:#F7F1EA;
  border-radius:50% 50% 50% 50% / 62% 62% 38% 38%;
}

@keyframes flicker{
  0%,100%{transform:scaleY(1) scaleX(1)}
  25%{transform:scaleY(1.18) scaleX(0.92) rotate(-3deg)}
  50%{transform:scaleY(0.86) scaleX(1.06) rotate(2deg)}
  75%{transform:scaleY(1.1) scaleX(0.96) rotate(-1deg)}
}

.candle-wick{
  width:3px;
  height:10px;
  background-color:#15100E;
  margin:0 auto;
}

.candle-body{
  width:16px;
  height:70px;
  margin:0 auto;
  background-color:#EDE3DA;
  border-radius:4px;
  position:relative;
}

.candle-body::after{
  content:"";
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  width:16px;
  height:7px;
  background-color:#A58D7A;
  border-radius:4px;
}

.gfx-bow{
  position:absolute;
  bottom:4px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:58px;
}

.bow-loop{
  position:absolute;
  top:10px;
  width:46px;
  height:30px;
  background-color:#E27254;
  border-radius:50% 50% 50% 50% / 62% 62% 38% 38%;
}

.bow-loop.loop-l{
  left:5px;
  transform:rotate(-20deg);
}

.bow-loop.loop-r{
  right:5px;
  transform:rotate(20deg);
}

.bow-knot{
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:20px;
  height:22px;
  background-color:#D95F43;
  border-radius:7px;
  z-index:2;
}

.bow-tail{
  position:absolute;
  bottom:0;
  width:13px;
  height:38px;
  background-color:#D95F43;
  border-radius:5px;
}

.bow-tail.tail-l{
  left:36px;
  transform:rotate(20deg);
}

.bow-tail.tail-r{
  right:36px;
  transform:rotate(-20deg);
}

.gfx-plate{
  position:absolute;
  top:96px;
  left:50%;
  transform:translateX(-50%);
  width:190px;
  height:190px;
  z-index:2;
}

.plate-rim{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:7px solid #D95F43;
  background-color:#241A15;
}

.plate-ring{
  position:absolute;
  inset:22px;
  border-radius:50%;
  border:3px solid #E27254;
}

.plate-inner{
  position:absolute;
  inset:44px;
  border-radius:50%;
  background-color:#D95F43;
}

.plate-inner::after{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:50%;
  border:2px solid #F7F1EA;
}

.cutlery-left,
.cutlery-right{
  position:absolute;
  top:36px;
  width:20px;
  height:190px;
  z-index:3;
}

.cutlery-left{
  left:8px;
}

.cutlery-right{
  right:8px;
}

.tines{
  display:flex;
  gap:2px;
  align-items:flex-start;
  justify-content:center;
  height:40px;
}

.tine{
  width:3px;
  height:34px;
  background-color:#EDE3DA;
  border-radius:2px;
}

.tines-base{
  width:17px;
  height:6px;
  background-color:#EDE3DA;
  border-radius:3px;
  margin:0 auto;
}

.cutlery-handle{
  width:10px;
  height:112px;
  margin:8px auto 0;
  background-color:#EDE3DA;
  border-radius:7px;
}

.knife-blade{
  width:13px;
  height:56px;
  margin:0 auto;
  background-color:#EDE3DA;
  border-radius:9px 9px 3px 3px;
  border-bottom:4px solid #D95F43;
}

.knife-handle{
  width:10px;
  height:86px;
  margin:9px auto 0;
  background-color:#E27254;
  border-radius:7px;
}

.gfx-cake{
  position:absolute;
  right:0;
  bottom:16px;
  width:116px;
  height:170px;
  z-index:1;
}

.cake-tier{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  border-radius:9px;
}

.cake-tier.t1{
  bottom:0;
  width:114px;
  height:46px;
  background-color:#EDE3DA;
  border-top:9px solid #F7F1EA;
}

.cake-tier.t2{
  bottom:46px;
  width:88px;
  height:38px;
  background-color:#E27254;
  border-top:7px solid #D95F43;
}

.cake-tier.t3{
  bottom:84px;
  width:62px;
  height:30px;
  background-color:#D95F43;
  border-top:6px solid #F7F1EA;
}

.cake-candle{
  position:absolute;
  bottom:112px;
  left:50%;
  transform:translateX(-50%);
  width:8px;
  height:28px;
  background-color:#F7F1EA;
  border-radius:3px;
  z-index:2;
}

.candle-flame-sm{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  width:11px;
  height:16px;
  background-color:#E27254;
  border-radius:50% 50% 50% 50% / 62% 62% 38% 38%;
  transform-origin:50% 100%;
  animation:flicker 1.6s infinite ease-in-out;
}

.cake-cherry{
  position:absolute;
  bottom:112px;
  right:8px;
  width:15px;
  height:15px;
  background-color:#D95F43;
  border-radius:50%;
  z-index:2;
}

.cake-cherry::before{
  content:"";
  position:absolute;
  top:-7px;
  left:9px;
  width:11px;
  height:9px;
  border-radius:50% 50% 0 0;
  background-color:#3A2B22;
}

.gfx-lights{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:250px;
  height:70px;
}

.light-wire{
  position:absolute;
  top:16px;
  left:0;
  right:0;
  height:3px;
  background-color:#A58D7A;
  border-radius:2px;
}

.light-bulb{
  position:absolute;
  top:13px;
  width:13px;
  height:18px;
  background-color:#F7F1EA;
  border-radius:50% 50% 50% 50% / 62% 62% 38% 38%;
}

.light-bulb::after{
  content:"";
  position:absolute;
  top:-7px;
  left:50%;
  transform:translateX(-50%);
  width:3px;
  height:7px;
  background-color:#A58D7A;
}

.light-bulb.lb1{
  left:6px;
  background-color:#D95F43;
  box-shadow:0 0 14px 4px #D95F43;
}

.light-bulb.lb2{
  left:50%;
  transform:translateX(-50%);
  background-color:#E27254;
  box-shadow:0 0 14px 4px #E27254;
}

.light-bulb.lb3{
  right:6px;
  background-color:#D95F43;
  box-shadow:0 0 14px 4px #D95F43;
}

.light-bulb.lb4{
  left:26%;
  background-color:#F7F1EA;
}

.light-bulb.lb5{
  right:26%;
  background-color:#F7F1EA;
}

/* ---------- Welcome Band ---------- */

.welcome-band{
  background-color:#15100E;
  padding:96px 0;
  border-top:1px solid #3A2B22;
}

.welcome-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}

.welcome-head h2{
  color:#F7F1EA;
  font-size:2.5rem;
  line-height:1.12;
  margin-top:14px;
}

.welcome-head p{
  color:#A58D7A;
  margin-top:18px;
  font-size:1.05rem;
}

.welcome-body p{
  color:#EDE3DA;
  margin-bottom:18px;
  font-size:1.05rem;
}

.welcome-body p strong{
  color:#F7F1EA;
}

/* ---------- Step Progression ---------- */

.step-progression{
  background-color:#15100E;
  padding:96px 0;
}

.section-head{
  max-width:760px;
  margin:0 auto 64px;
  text-align:center;
}

.steps{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.steps::before{
  content:"";
  position:absolute;
  top:38px;
  left:7%;
  right:7%;
  height:2px;
  background-color:#3A2B22;
}

.step{
  position:relative;
  padding:0 26px;
  text-align:center;
}

.step:not(:last-child){
  border-right:1px solid #3A2B22;
}

.step::before{
  content:"";
  position:absolute;
  top:29px;
  left:50%;
  transform:translateX(-50%);
  width:20px;
  height:20px;
  border-radius:50%;
  background-color:#D95F43;
  border:5px solid #15100E;
  z-index:2;
}

.step-num{
  display:inline-block;
  margin-top:34px;
  border:2px solid #D95F43;
  color:#D95F43;
  font-size:1.7rem;
  font-weight:700;
  padding:3px 18px;
  border-radius:7px;
  font-family:Georgia,"Times New Roman",serif;
}

.step h3{
  color:#F7F1EA;
  font-size:1.25rem;
  margin:18px 0 12px;
}

.step p{
  color:#EDE3DA;
  font-size:0.98rem;
}

/* ---------- Metric Band ---------- */

.metric-band{
  background-color:#D95F43;
  padding:66px 0;
}

.metrics{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.metric{
  text-align:center;
}

.metric:not(:last-child){
  border-right:1px solid #FBE4DC;
}

.metric-num{
  color:#F7F1EA;
  font-size:3.1rem;
  font-weight:700;
  line-height:1.1;
  font-family:Georgia,"Times New Roman",serif;
}

.metric-label{
  color:#FBE4DC;
  font-size:0.8rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-top:8px;
}

/* ---------- Statement Band ---------- */

.statement-band{
  background-color:#241A15;
  padding:100px 0;
}

.statement-inner{
  max-width:960px;
  margin:0 auto;
  padding:0 24px;
  border-left:4px solid #D95F43;
  text-align:center;
}

.statement-text{
  color:#F7F1EA;
  font-size:1.75rem;
  line-height:1.5;
  font-family:Georgia,"Times New Roman",serif;
}

.statement-text em{
  color:#E27254;
  font-style:normal;
}

/* ---------- CTA Band ---------- */

.cta-band{
  background-color:#15100E;
  padding:100px 0;
  text-align:center;
}

.cta-inner{
  max-width:760px;
  margin:0 auto;
  padding:0 24px;
}

.cta-inner h2{
  color:#F7F1EA;
  font-size:2.6rem;
  line-height:1.12;
}

.cta-inner p{
  color:#EDE3DA;
  font-size:1.1rem;
  margin:18px auto 34px;
  max-width:560px;
}

/* ---------- Secondary Page Hero ---------- */

.page-hero{
  background-color:#15100E;
  padding:84px 0 92px;
  border-bottom:1px solid #3A2B22;
}

.page-hero-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  text-align:center;
}

.page-hero-inner h1{
  color:#F7F1EA;
  font-size:3rem;
  line-height:1.1;
  margin:20px 0 18px;
}

.page-hero-inner h1 .accent{
  color:#D95F43;
}

.page-hero-inner .page-intro{
  color:#EDE3DA;
  font-size:1.1rem;
  max-width:720px;
  margin:0 auto;
}

/* ---------- Services Page ---------- */

.service-rows{
  background-color:#15100E;
  padding:96px 0 40px;
}

.service-row{
  max-width:1200px;
  margin:0 auto;
  padding:34px 24px;
  display:grid;
  grid-template-columns:190px 1fr;
  gap:40px;
  align-items:start;
  border-bottom:1px solid #3A2B22;
}

.service-row-head{
  display:flex;
  align-items:center;
  gap:18px;
}

.service-num{
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.9rem;
  font-weight:700;
  color:#D95F43;
  width:64px;
  height:64px;
  border:2px solid #D95F43;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.service-row h2{
  color:#F7F1EA;
  font-size:1.5rem;
  margin-bottom:12px;
}

.service-row .service-body{
  color:#EDE3DA;
}

.service-row .service-body p{
  margin-bottom:12px;
  font-size:1.02rem;
}

.service-row .service-note{
  color:#A58D7A;
  font-size:0.95rem;
}

.service-process{
  background-color:#241A15;
  padding:96px 0;
}

.service-process .section-kicker,
.service-process .section-title,
.service-process .section-intro{
  color:#F7F1EA;
}

.service-process .section-intro{
  color:#A58D7A;
}

.process-cards{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.process-card{
  background-color:#15100E;
  border:1px solid #3A2B22;
  border-radius:14px;
  padding:30px 26px;
  text-align:center;
}

.process-card .p-step{
  color:#D95F43;
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
}

.process-card h3{
  color:#F7F1EA;
  font-size:1.15rem;
  margin:12px 0 10px;
}

.process-card p{
  color:#CFC2B4;
  font-size:0.95rem;
}

/* ---------- Contact Page ---------- */

.contact-grid{
  max-width:1200px;
  margin:0 auto;
  padding:96px 24px 72px;
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:56px;
  align-items:start;
}

.contact-form-wrap h2,
.contact-info h2{
  color:#F7F1EA;
  font-size:1.6rem;
  margin-bottom:10px;
}

.contact-form-wrap .form-hint{
  color:#A58D7A;
  margin-bottom:28px;
}

.form-field{
  margin-bottom:20px;
}

.form-field label{
  display:block;
  color:#F7F1EA;
  font-size:0.95rem;
  margin-bottom:8px;
  letter-spacing:0.02em;
}

.form-field input,
.form-field textarea{
  width:100%;
  background-color:#241A15;
  border:1px solid #3A2B22;
  border-radius:8px;
  color:#EDE3DA;
  font-family:inherit;
  font-size:1rem;
  padding:13px 15px;
  transition:border-color .2s ease;
}

.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:#D95F43;
}

.form-field textarea{
  min-height:150px;
  resize:vertical;
}

.form-status{
  color:#FBE4DC;
  background-color:#241A15;
  border:1px solid #3A2B22;
  border-radius:8px;
  padding:14px 16px;
  margin-top:16px;
  font-size:0.95rem;
}

.contact-info-card{
  background-color:#241A15;
  border:1px solid #3A2B22;
  border-radius:16px;
  padding:34px 32px;
  margin-bottom:36px;
}

.contact-line{
  padding:16px 0;
  border-bottom:1px solid #3A2B22;
}

.contact-line:first-child{
  padding-top:0;
}

.contact-line:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.contact-line .c-label{
  display:block;
  color:#A58D7A;
  font-size:0.78rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:4px;
}

.contact-line .c-value{
  color:#F7F1EA;
  font-size:1.05rem;
  line-height:1.5;
}

.contact-line .c-value a{
  color:#F7F1EA;
  text-decoration:none;
}

.contact-line .c-value a:hover{
  color:#E27254;
}

.faq-item{
  background-color:#241A15;
  border:1px solid #3A2B22;
  border-radius:12px;
  margin-bottom:14px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  cursor:pointer;
  color:#F7F1EA;
  font-size:1.05rem;
  font-weight:700;
  font-family:inherit;
  padding:20px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.faq-question .faq-icon{
  color:#D95F43;
  font-size:1.4rem;
  line-height:1;
  transition:transform .2s ease;
}

.faq-item.open .faq-icon{
  transform:rotate(45deg);
}

.faq-answer{
  display:none;
  padding:0 22px 20px;
  color:#CFC2B4;
  font-size:0.98rem;
}

.faq-item.open .faq-answer{
  display:block;
}

/* ---------- Four-Column Footer ---------- */

.four-col-footer{
  background-color:#241A15;
  border-top:1px solid #3A2B22;
  padding:72px 0 44px;
}

.footer-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.35fr 1fr 1.1fr 1.35fr;
  gap:48px;
}

.footer-blurb{
  color:#A58D7A;
  margin-top:16px;
  font-size:0.95rem;
}

.footer-title{
  color:#F7F1EA;
  font-size:1.02rem;
  letter-spacing:0.05em;
  margin-bottom:20px;
}

.footer-links{
  list-style:none;
}

.footer-links li{
  margin-bottom:11px;
}

.footer-links a{
  color:#EDE3DA;
  text-decoration:none;
  transition:color .2s ease;
}

.footer-links a:hover{
  color:#D95F43;
}

.footer-contact .footer-line{
  margin-bottom:12px;
  color:#A58D7A;
  font-size:0.97rem;
}

.footer-contact a{
  color:#EDE3DA;
  text-decoration:none;
}

.footer-contact a:hover{
  color:#D95F43;
}

.footer-legal{
  max-width:1200px;
  margin:0 auto;
  padding:28px 24px 0;
  border-top:1px solid #3A2B22;
  margin-top:56px;
  text-align:center;
  color:#A58D7A;
  font-size:0.86rem;
}

.footer-legal a{
  color:#A58D7A;
  text-decoration:underline;
}

.footer-legal a:hover{
  color:#E27254;
}

/* ---------- Reveal ---------- */

.fade-up{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease,transform .7s ease;
}

.fade-up.visible{
  opacity:1;
  transform:none;
}

/* ---------- Responsive ---------- */

@media (max-width:1080px){
  .hero-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero-center{
    grid-column:1 / -1;
    order:1;
  }
  .hero-left{
    order:2;
  }
  .hero-right{
    order:3;
  }
  .gfx-chip{
    min-height:300px;
  }
  .steps{
    grid-template-columns:repeat(2,1fr);
    gap:40px 0;
  }
  .steps::before{
    display:none;
  }
  .step:nth-child(2){
    border-right:none;
  }
  .step{
    padding:26px;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .welcome-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
}

@media (max-width:820px){
  .nav-toggle{
    display:flex;
  }
  .nav-inner{
    position:relative;
  }
  .nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background-color:#241A15;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    border-bottom:1px solid #3A2B22;
    box-shadow:0 18px 30px rgba(21,16,14,0.9);
  }
  .nav-links.open{
    display:flex;
  }
  .nav-links li{
    border-top:1px solid #3A2B22;
  }
  .nav-links a{
    display:block;
    padding:15px 24px;
    text-align:center;
    border-bottom:none;
  }
  .nav-links a.active{
    color:#D95F43;
  }
  .metrics{
    grid-template-columns:repeat(2,1fr);
    gap:36px 0;
  }
  .metric:nth-child(2){
    border-right:none;
  }
  .contact-grid{
    grid-template-columns:1fr;
  }
  .service-row{
    grid-template-columns:1fr;
    gap:20px;
  }
  .process-cards{
    grid-template-columns:repeat(2,1fr);
  }
  .stat-line{
    flex-wrap:wrap;
    gap:16px;
  }
  .stat-line .divider{
    display:none;
  }
  .hero-title{
    font-size:2.5rem;
  }
}

@media (max-width:560px){
  .hero-title{
    font-size:2.1rem;
  }
  .hero-grid,
  .steps,
  .metrics,
  .process-cards,
  .footer-grid,
  .welcome-grid{
    grid-template-columns:1fr;
  }
  .steps::before{
    display:none;
  }
  .step:nth-child(2),
  .step{
    border-right:none;
  }
  .metric:nth-child(2),
  .metric{
    border-right:none;
  }
  .banquet-gfx{
    transform:scale(0.82);
  }
  .feast-gfx{
    transform:scale(0.82);
  }
  .gfx-chip{
    min-height:280px;
  }
  .footer-grid{
    gap:36px;
  }
  .stat-line .stat{
    font-size:1.3rem;
  }
  .statement-text{
    font-size:1.4rem;
  }
  .cta-inner h2{
    font-size:2rem;
  }
  .page-hero-inner h1{
    font-size:2.3rem;
  }
}
