/* ROOT */

:root{
  --cream:#FEF4EA;
  --dark:#271C12;
  --mid:#5A4030;
  --orange:#D88A3B;
}

/* RESET */

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

body{
  font-family:'Lora', serif;
  background:var(--cream);
  color:var(--dark);
}

/* =========================
   NAVBAR (UNIFIED SYSTEM)
========================= */

.nav {
  position: sticky; /* FIXED ISSUE */
  top: 0;
  width: 100%;
  background: #271C12;
  z-index: 1000;
}

/* INNER CONTAINER (CRITICAL FOR CONSISTENCY) */
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;

  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  width: 52px;
}

/* BRAND TEXT */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #fff;
}

.nav-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #e6d8c8;
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* LINK */
.nav-link {
  font-size: 14px;
  color: #e6d8c8;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s;
}

.nav-link:hover {
  opacity: 1;
}

/* CTA (FORCE CONSISTENCY) */
.nav-cta {
  font-family: 'Playfair Display', serif;
  font-size: 14px;

  padding: 12px 22px;

  color: #fff;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;

  transition: 0.25s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #fff;
  color: #271C12;
}
/* CTA BUTTON */

.nav-cta{
  font-family:'Playfair Display', serif;
  font-size:13px;
  text-decoration:none;
  color:#fff;

  padding:10px 18px;
  border:1px solid rgba(255,255,255,0.5);
  border-radius:2px;

  transition:0.25s;
}

.nav-cta:hover{
  background:#fff;
  color:#271c12;
}

.nav-link {
  font-size: 14px;
  color: #e6d8c8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* HERO */

.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}


/* IMAGE */

.hero-bg{
  position:absolute;
  inset:0;
  background-image:url('../images/hero.jpg');
  background-size:cover;
  background-position:50% 80%;
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(254,244,234,0.55),
    rgba(254,244,234,0.85)
  );
}

/* CONTENT */

.hero-content{
  position:relative;
  max-width:780px;
  padding:0 20px;
  transform: translateY(-60px)
}

.hero-eyebrow{
  font-family:'DM Mono', monospace;
  font-size:18px;
  letter-spacing:2px;
  color:#b86a20;
  margin-bottom:36px;
}

.hero-title{
  font-family:'Playfair Display', serif;
  font-size:clamp(38px,6vw,68px);
  line-height:1.1;
  margin-bottom:36px;
}

.hero-title em{
  font-style:italic;
  color:#d88a3b;
}

.hero-sub{
  font-size:18px;
  color:#5a4030;
  margin-bottom:28px;
  font-style:italic;
}

.hero-cta{
  display:inline-block;
  padding:14px 34px;
  background:#271c12;
  color:#fff;
  text-decoration:none;
  font-family:'Playfair Display', serif;
  letter-spacing:0.05em;
  transition:0.25s;
}

.hero-cta:hover{
  background:#d88a3b;
}

.hero-foot{
  margin-top:18px;
  font-size:12px;
  color:#7a6a5c;
  letter-spacing:1px;
}

/* VALUE PROPOSITION */

.value-props{
  padding:120px 20px;
background:#f2e3c6; /*creaam*/
}

.vp-inner{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.vp-header h2{
  font-family:'Playfair Display', serif;
  font-size:46px;
  line-height:1.2;
}

.vp-header h2 em{
  font-style:italic;
  color:#c47a2c;
}

.vp-header p{
  margin-top:10px;
  margin-bottom:60px;

  font-family:'DM Mono', monospace;
  font-size:13px;
  letter-spacing:0.05em;
  color:#6b5c4a;
}

/* GRID */

.vp-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}

/* CARD */

.vp-card{
  display:flex;
  flex-direction:column;
}

/* IMAGE PLACEHOLDER */

.vp-image{
  height:260px;
  border-radius:2px;
  background:#ddd;
  margin-bottom:20px;
  overflow:hidden;

  background-size:cover;
  background-position:center;
}

/* IMAGE SLIDER */

.vp-image{
  height:260px;
  border-radius:2px;
  margin-bottom:20px;
  overflow:hidden;
  position:relative;
}

/* each image layer */
.vp-slide{
  position:absolute;
  inset:0;

  background-size:cover;
  background-position:center;

  opacity:0;
  transition:opacity 0.8s ease;
}

/* visible one */
.vp-slide.active{
  opacity:1;
}

/* TEXT */

.vp-text{
  text-align:left;
}

.vp-text h3{
  font-family:'Playfair Display', serif;
  font-size:22px;
  margin-bottom:10px;
}

.vp-text p{
  font-size:16px;
  line-height:1.6;
  color:#5a4030;
}

.strike{
  position:relative;
  color:#7a6a5c; /* slightly muted */

  text-decoration:none; /* remove default strike */
}

.strike::after{
  content:"";
  position:absolute;
  left:-2px;
  right:-2px;
  top:52%;

  height:2.5px;
  background:#c47a2c; /* brand color */

transform:rotate(-2deg);
  border-radius:2px; /* soft edges */}

/* =========================
   JOURNEY SECTION
========================= */

.journey{
  padding:100px 40px;
  background:#e6efe9;
  text-align:center;
}

.journey-header h2{
  font-family:'Playfair Display', serif;
  font-size:48px;
  line-height:1.2;
  margin-bottom:10px;
}

.journey-header h2 em{
  font-style:italic;
  color:#c47a2c;
}

.journey-header p{
  font-family:'DM Mono', monospace;
  font-size:13px;
  letter-spacing:0.05em;
  color:#6b5c4a;
  margin-bottom:60px;
}

/* GRID */

.journey-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

/* CARDS */

.journey-card{
  border-radius:2px;
  padding:50px 40px;
  text-align:left;
  position:relative;
}

/* LIGHT CARD */

.journey-card.light{
  background:#efe4d6;
}

/* DARK CARD */

.journey-card.dark{
  background:#e6d8c3;
  border:1px solid rgba(0,0,0,0.05);
}  

/* INNER */

.journey-inner{
  max-width:420px;
}

/* TAG */

.journey-tag{
  font-size:11px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:#b07a45;
}

/* TITLE */

.journey-card h3{
  font-family:'Playfair Display', serif;
  font-size:28px;
  margin:15px 0;
}

/* TEXT */

.journey-card p{
  font-size:15px;
  line-height:1.6;
  color:#3d2f23;
}

/* POINTS */

.journey-points{
  margin:20px 0;
  padding-left:10px;
}

.journey-points p{
  font-family:'DM Mono', monospace;
  font-size:12px;
  margin:6px 0;
  color:#5a4a3a;
}

/* BUTTON */

.journey-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 22px;
  background:#2a1d14;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  letter-spacing:0.05em;
  border-radius:2px;
  transition:all 0.3s ease;
}

.journey-btn:hover{
  opacity:0.85;
}

/* PRIMARY CTA */

.journey-btn.primary{
  background:#c47a2c;
}

/* RESPONSIVE */

@media(max-width:900px){
  .journey-grid{
    grid-template-columns:1fr;
  }

  .journey-card.dark{
    transform:none;
  }
}

/* =========================
   HOW IT WORKS
========================= */

.how{
  padding:100px 40px;
background:#f8f5f0; /* lighter, more neutral cream */
  text-align:center;
}

.how-header h2{
  font-family:'Playfair Display', serif;
  font-size:44px;
  line-height:1.2;
}

.how-header h2 em{
  font-style:italic;
  color:#c47a2c;
}

.how-header p{
  margin-top:10px;
  font-family:'DM Mono', monospace;
  font-size:13px;
  color:#6b5c4a;
  margin-bottom:150px;
}

/* FLOW */

.how-flow{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
}

/* STEP */

.how-step span{
  font-family:'DM Mono', monospace;
  font-size:60px;
  color:#b07a45;
}

.how-step h3{
  font-family:'Playfair Display', serif;
  font-size:22px;
  margin:10px 0;
}

.how-step p{
  font-size:14px;
  color:#3d2f23;
  line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:900px){
  .how-flow{
    grid-template-columns:1fr;
  }
}

/* =========================
   PRICING
========================= */

.pricing{
  padding:110px 40px;
  background:#e6efe9; /* same pastel green */ 
  text-align:center;
}

.pricing-header h2{
  font-family:'Playfair Display', serif;
  font-size:46px;
  line-height:1.2;
}

.pricing-header h2 em{
  font-style:italic;
  color:#c47a2c;
}

.pricing-header p{
  font-family:'DM Mono', monospace;
  font-size:13px;
  color:#6b5c4a;
  margin:12px 0 60px;
}

/* GRID */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:900px;
  margin:0 auto 30px;
}

/* CARD */

.pricing-card{
  padding:40px 30px;
  background:#fff;
  border-radius:2px;
  text-align:center;
}

/* FEATURED */

.pricing-card.featured{
  background:#e6d8c3;
}

/* TEXT */

.tier{
  font-family:'DM Mono', monospace;
  font-size:11px;
  letter-spacing:0.12em;
  color:#7a6a5c;
}

.pricing-card .price{
  font-size:40px;
  margin:30px 0 15px;
  font-weight:600;
}

.price-note{
  font-size:13px;
  color:#6b5c4a;
}

/* FOOTNOTE */

.pricing-footnote{
  font-family:'DM Mono', monospace;
  font-size:11px;
  letter-spacing:0.1em;
  margin-bottom:60px;
  color:#7a6a5c;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  max-width:1000px;
  margin:0 auto;
}

.testimonial{
  background:#efe4d6;
  padding:28px;
  border-radius:2px;
  text-align:left;
}

.testimonial p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
}

.testimonial span{
  font-size:12px;
  color:#7a6a5a;
}

/* RESPONSIVE */

@media(max-width:900px){
  .pricing-grid,
  .testimonials{
    grid-template-columns:1fr;
  }
}

/* =========================
   FAQ
========================= */

.faq{
  padding:100px 40px;
background:#f8f5f0; /* lighter, more neutral cream */
  text-align:center;
}

.faq-header h2{
  font-family:'Playfair Display', serif;
  font-size:44px;
  line-height:1.2;
  margin-bottom:50px;
}

.faq-header em{
  color:#c47a2c;
  font-style:italic;
}

/* LIST */

.faq-list{
  max-width:700px;
  margin:0 auto;
  text-align:left;
}

/* ITEM */

.faq-item{
  border-bottom:1px solid rgba(0,0,0,0.08);
  padding:18px 0;
}

/* QUESTION */

.faq-question{
  width:100%;
  background:none;
  border:none;
  font-size:16px;
  text-align:left;
  cursor:pointer;
  font-family:'Playfair Display', serif;
}

/* ANSWER */

.faq-answer{
  display:none;
  margin-top:10px;
  font-size:14px;
  color:#3d2f23;
  line-height:1.6;
}

/* ACTIVE */

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

/* =========================
   FINAL CTA
========================= */

.final-cta{
  padding:120px 40px;
  background:#f3ede6; /* soft warm tone cream */
  text-align:center;
}

.final-cta h2{
  font-family:'Playfair Display', serif;
  font-size:48px;
  line-height:1.2;
}

.final-cta em{
  color:#c47a2c;
  font-style:italic;
}

.final-cta p{
  margin:20px 0 30px;
  font-size:15px;
  color:#5a4a3a;
}

/* BUTTON */

.cta-btn{
  display:inline-block;
  padding:16px 32px;
  background:#2a1d14;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  border-radius:2px;
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:50px 40px;
  background:#271C12;
  color:#e6d8c8;
}

.footer-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LEFT */

.footer-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-logo{
  width:96px;
}

.footer-title{
  font-family:'Playfair Display', serif;
  font-size:16px;
  letter-spacing:0.15em;
}

.footer-sub{
  font-family:'DM Mono', monospace;
  font-size:10px;
  letter-spacing:0.15em;
  color:#bda88f;
}

/* RIGHT */

.footer-right{
  text-align:right;
}

.footer-right p{
  font-size:13px;
  margin-bottom:6px;
}

.footer-right span{
  font-size:11px;
  color:#bda88f;
}

.footer-center a {
  color: #e6d8c8; /* matches footer text */
  text-decoration: none;
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-center {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 30px;
  text-align: center;
}

.footer-center a:hover {
  opacity: 1;
}

/* RESPONSIVE */

@media(max-width:768px){
  .footer-inner{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

  .footer-right{
    text-align:center;
  }
}

/* =========================
   RECENT SECTION
========================= */

.recent{
  padding:120px 0;
  background:#89D4FF;
  text-align:center;
}

.recent-header h2{
  font-family:'Playfair Display', serif;
  font-size:44px;
  line-height:1.2;
}

.recent-header em{
  color:#c47a2c;
  font-style:italic;
}

.strike{
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  opacity:0.6;
}

.recent-header p{
  margin:12px 0 50px;
  font-family:'DM Mono', monospace;
  font-size:13px;
}

/* =========================
   SLIDER
========================= */

.recent-slider{
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:20px 8%;
  scrollbar-width:none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.recent-card {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.recent-slider::-webkit-scrollbar{
  display:none;
}

/* =========================
   RECENT SECTION
========================= */

.recent{
  padding:120px 0;
  background:#e8f4ea;
  text-align:center;
}

/* =========================
   SLIDER (CENTER + PEEK)
========================= */

.recent-slider{
  display:flex;
  gap:32px;

  overflow-x:auto;
  scroll-snap-type:x mandatory;

  padding:40px calc(50% - 450px); /* centers 900px card */

  scrollbar-width:none;
}

.recent-slider::-webkit-scrollbar{
  display:none;
}

/* =========================
   CARD
========================= */

.recent-card{
  flex:0 0 900px; /* fixed width */
  height:500px;

  display:grid;
  grid-template-columns: 65% 35%;

  background:#efe4d6;
  border-radius:2px;
  overflow:hidden;

  scroll-snap-align:center;

  transition: all 0.25s ease;
}

.recent-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* =========================
   LEFT: IMAGE
========================= */

/* =========================
   IMAGE POSITION CONTROL
========================= */

.recent-image{
  width:100%;
  height:100%;

  background-size: cover;
  background-repeat: no-repeat;

  position:relative;
}

/* positioning variants */

.image-left{
  background-position: 0% center;
}

.image-center{
  background-position: center;
}

.image-right{
  background-position: 100% center;
}

/* =========================
   NEW RIGHT PANEL
========================= */

.new-right{
  background:#06402B; /* deep premium blue */
  color:#f4efe6;

  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:28px;

  padding:40px 36px;
}

/* block */

.price-block{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* rows */

.price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;

  font-size:15px;
  letter-spacing:0.02em;
}

.price-row .label{
  opacity:0.7;
  text-transform:lowercase;
}

.price-row .value{
  font-size:18px;
  font-weight:500;
}

/* highlight */

.price-row.highlight .value{
  font-size:28px;
  font-weight:600;
}

/* savings emphasis */

.price-row.savings .value{
  color:#c47a2c;
  font-weight:600;
}

/* divider */

.divider{
  height:1px;
  background:rgba(255,255,255,0.15);
}

/* strike */

.strike{
  text-decoration:line-through;
  opacity:0.5;
}

/* CTA */

.cta-book{
  margin-top:10px;
  padding:14px;

  background:#c47a2c;
  color:#fff;

  border:none;
  border-radius:2px;

  font-family:'Playfair Display', serif;
  font-size:14px;
  letter-spacing:0.05em;

  cursor:pointer;
  transition:0.25s;
}

.cta-book:hover{
  opacity:0.85;
}

/* =========================
   BRAND STRIP (ANIMATED)
========================= */

.brand-strip{
  overflow:hidden;
  padding:20px 0;
  background:#e6efe9;
}

/* moving container */
.brand-track{
  display:flex;
  width:max-content;
  animation:scrollBrands 45s linear infinite;
}

.brand-row{
  display:flex;
  align-items:center;
  gap:50px;
  padding-right:50px; /* critical for seamless spacing */
}

/* logos */
.brand-row img{
  height:32px;
  object-fit:contain;
  opacity:0.6;
}

/* animation */
@keyframes scrollBrands{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* SECRET PAGE */

.secret-hero {
  text-align: center;
  padding: 120px 20px 60px;
}

.secret-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.secret-hero p {
  font-size: 18px;
  opacity: 0.7;
}


/* COMPARISON */

.comparison-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: transparent;
  border-radius: 2px;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  padding: 18px 20px;
  align-items: center;
}

.row.header {
  background: #ece7de;
  font-weight: 600;
}

.row:last-child {
  border-bottom: none;
}

.row div:nth-child(2) {
  color: #3e6b5a;
}

.row div:nth-child(3) {
  color: #999;
}

/* =========================
   LEGAL PAGES (PRIVACY / TERMS / REFUND)
========================= */

.legal {
  padding: 120px 20px;
  background: var(--cream);
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.legal-meta {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #7a6a5c;
  margin-bottom: 40px;
}

.legal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.legal p {
  font-size: 15px;
  line-height: 1.7;
  color: #3d2f23;
  margin-bottom: 14px;
}

.legal ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.legal li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* =========================
   PROOF SECTION
========================= */

.proof-section{
  padding:40px 0 20px;
  background:transparent;
}

/* =========================
   TICKER
========================= */

.proof-ticker{
  font-family:'DM Mono', monospace;
  font-size:16px;
  letter-spacing:0.08em;
  text-align:center;

  color:#281b11;
  

  margin-bottom:20px;
}

/* =========================
   CAROUSEL
========================= */

.proof-carousel{
  overflow:hidden;
}

.proof-track{
  display:flex;
  gap:24px;
  width:max-content;

  animation:scrollProof 60s linear infinite;
}

@keyframes scrollProof{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* =========================
   CARD
========================= */

.proof-card{
  width:280px;
  background:#fff;
  border-radius:2px;
  overflow:hidden;  
}

.proof-section{
  margin-top:-190px;
  position:relative;
  z-index:5;
}

/* =========================
   IMAGE
========================= */

.proof-image{
  height:180px;
  background-size:cover;
  background-position:center;
  position:relative;
}

/* BADGE */

.proof-badge{
  position:absolute;
  top:12px;
  right:12px;

  background:#c47a2c;
  color:#fff;

  font-size:12px;
  padding:6px 10px;
  border-radius:2px;

  font-family:'DM Mono', monospace;
}

/* DATE */

.proof-meta{
  position:absolute;
  bottom:10px;
  left:12px;

  font-size:11px;
  color:#fff;

  background:rgba(0,0,0,0.35);
  padding:4px 8px;
  border-radius:2px;

  font-family:'DM Mono', monospace;
}

/* =========================
   CONTENT
========================= */

.proof-content{
  padding:16px;
}

.proof-title{
  font-family:'Playfair Display', serif;
  font-size:16px;
  margin-bottom:10px;
  text-transform:lowercase;
}

/* =========================
   PRICE BLOCK
========================= */

.proof-price{
  display:flex;
  align-items:flex-end;
  gap:14px;
  margin-bottom:6px;
}

.old-wrap{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.old-wrap .label{
  font-size:10px;
  font-family:'DM Mono', monospace;
  color:#7a6a5c;
  opacity:0.6;
}

.old{
  text-decoration:line-through;
  opacity:0.4;
  font-size:14px;
}

.new{
  font-size:20px;
  font-weight:600;
}

/* =========================
   SAVINGS
========================= */

.proof-save{
  font-size:13px;
  color:#c47a2c;
}

/* =========================
   FORM SYSTEM
========================= */

.form-section{
  min-height:calc(100vh - 80px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.form-container{
  width:1000px;
  height:520px;

  display:grid;
  grid-template-columns:60% 40%;

  background:#efe4d6;
  overflow:hidden;
}

/* LEFT */

.form-left{
  background:#ddd;
  background-size:cover;
  background-position:center;
}

/* RIGHT */

.form-right{
  background:#06402B;
  color:#f4efe6;

  padding:40px;

  display:flex;
  flex-direction:column;
}

/* TITLE */

.form-title{
  font-family:'Playfair Display', serif;
  font-size:26px;
  margin-bottom:100px
}

/* STEPS */

.form-step{
  display:none;
}

.form-step.active{
  display:block;
}

.form-step p{
  font-size:20px;
  font-weight:600;
  margin-bottom:18px;
}

/* OPTIONS */

.option{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,0.2);
  cursor:pointer;
}

.option:last-child{
  border-bottom:1px solid rgba(255,255,255,0.2);
}


/* BUTTON */

.btn{
  margin-top:30px;
  padding:16px;
  width:100%;
  background:#c47a2c;
  color:#fff;
  border:none;
  cursor:pointer;
}

.form-left {
  background-image: url('../images/hotels-price/westin-phuket.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}


/* FIX INPUT LOOK */

.form-step input[type="links_1"],
.form-step input[type="links_2"],
.form-step input[type="links_3"],
.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"] {
  width: 100%;
  display: block;

  padding: 12px 10px;
  margin-bottom: 12px;

  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);

  color: #f4efe6;
  font-size: 14px;
  font-family: 'Lora', serif;

  outline: none;
}

/* placeholder */
.form-step input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* focus */
.form-step input:focus {
  border-bottom: 1px solid #c47a2c;
}

/* =========================
   ADMIN TOOL
========================= */

.admin-shell{
  padding:48px 24px 80px;
  background:
    radial-gradient(circle at top left, rgba(216,138,59,0.16), transparent 30%),
    linear-gradient(180deg, #f9efe5 0%, #f4ede6 100%);
  min-height:calc(100vh - 88px);
}

.admin-hero,
.admin-layout{
  max-width:1200px;
  margin:0 auto;
}

.admin-hero{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:28px;
  align-items:start;
  margin-bottom:32px;
}

.admin-kicker,
.admin-section-label,
.generated-label,
.quote-copy-label,
.quote-banner-card-label{
  font-family:'DM Mono', monospace;
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#9b6331;
}

.admin-hero h1{
  font-family:'Playfair Display', serif;
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.05;
  max-width:9.5ch;
  margin:14px 0 18px;
}

.admin-subcopy{
  max-width:680px;
  font-size:17px;
  line-height:1.7;
  color:#5f4736;
}

.admin-hero-card,
.admin-form,
.quote-summary-card,
.quote-list-card,
.quote-card,
.quote-image-card{
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(18px);
  border:1px solid rgba(39,28,18,0.08);
  border-radius:2px;
  box-shadow:0 18px 60px rgba(39,28,18,0.08);
}

.admin-hero-card{
  padding:24px;
}

.admin-hero-card p{
  font-family:'Playfair Display', serif;
  font-size:24px;
  margin-bottom:12px;
}

.admin-hero-card ol{
  padding-left:18px;
  color:#5f4736;
  line-height:1.8;
}

.admin-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap:24px;
  align-items:start;
}

.admin-form{
  padding:28px;
}

.admin-section + .admin-section{
  margin-top:28px;
  padding-top:28px;
  border-top:1px solid rgba(39,28,18,0.08);
}

.admin-section-head{
  margin-bottom:18px;
}

.admin-section-head h2,
.quote-summary-card h2,
.quote-list-card h2,
.quote-card h2{
  font-family:'Playfair Display', serif;
  font-size:28px;
  line-height:1.1;
  margin-top:8px;
}

.admin-grid{
  display:grid;
  gap:16px;
}

.admin-grid-2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.admin-grid-3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.admin-grid-4{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.admin-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.admin-form label span{
  font-size:13px;
  color:#6d5340;
}

.admin-form label.is-optional span::after{
  content:" (optional if none shown)";
  color:#9b7a63;
  font-size:12px;
}

.admin-form input,
.admin-form select,
.admin-form textarea{
  width:100%;
  border:1px solid rgba(39,28,18,0.12);
  border-radius:2px;
  padding:14px 16px;
  background:rgba(255,255,255,0.9);
  color:#271C12;
  font-family:'Lora', serif;
  font-size:15px;
}

.admin-form textarea{
  min-height:130px;
  resize:vertical;
  line-height:1.5;
}

.admin-textarea{
  margin-top:16px;
}

.admin-checkbox{
  justify-content:flex-end;
}

.admin-checkline{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-height:52px;
  padding:14px 16px;
  border:1px solid rgba(39,28,18,0.12);
  border-radius:2px;
  background:rgba(255,255,255,0.9);
}

.admin-checkline input{
  width:auto;
  margin-top:4px;
}

.admin-checkline small{
  display:block;
  font-size:13px;
  line-height:1.5;
  color:#5f4736;
}

.admin-actions{
  display:flex;
  gap:14px;
  margin-top:34px;
  flex-wrap:wrap;
}

.admin-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.quote-summary-card,
.quote-list-card{
  padding:24px;
}

.summary-metrics{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.summary-metrics div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
  padding-bottom:12px;
  border-bottom:1px dashed rgba(39,28,18,0.12);
}

.summary-metrics span,
.quote-price-line span,
.quote-spec-grid span,
.quote-policy-callout span,
.quote-savings-box span{
  font-size:13px;
  color:#6d5340;
}

.summary-metrics strong,
.quote-price-line strong,
.quote-spec-grid strong,
.quote-policy-callout strong,
.quote-savings-box strong{
  font-family:'Playfair Display', serif;
  font-size:21px;
}

.summary-total strong{
  color:#c47a2c;
}

.generated-state{
  margin-top:24px;
  padding:18px;
  border-radius:14px;
  background:#f6ebde;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.generated-state a{
  color:#2a1d14;
  text-decoration:none;
  word-break:break-all;
}

.copy-link-btn,
.text-action,
.quote-list-actions button,
.quote-list-actions a{
  border:none;
  background:none;
  padding:0;
  font-family:'DM Mono', monospace;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#9b6331;
  cursor:pointer;
  text-decoration:none;
}

.quote-list-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  margin-bottom:20px;
}

.quote-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.quote-list-item{
  padding:16px 0;
  border-top:1px solid rgba(39,28,18,0.08);
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

.quote-list-title{
  font-family:'Playfair Display', serif;
  font-size:20px;
  margin-bottom:6px;
}

.quote-list-meta,
.quote-list-empty{
  font-size:14px;
  line-height:1.6;
  color:#6d5340;
}

.quote-list-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
  min-width:90px;
}

/* =========================
   QUOTE PAGE
========================= */

.quote-shell{
  padding:48px 24px 80px;
  background:
    linear-gradient(180deg, #f5ece0 0%, #fbf7f1 100%);
  min-height:calc(100vh - 88px);
}

.quote-page{
  max-width:1200px;
  margin:0 auto;
}

.quote-page-empty{
  padding:72px 24px;
  text-align:center;
}

.quote-page-empty h1{
  font-family:'Playfair Display', serif;
  font-size:52px;
  line-height:1.05;
  margin:12px 0 16px;
}

.quote-page-empty p{
  max-width:580px;
  margin:0 auto 24px;
  color:#6d5340;
  line-height:1.7;
}

.quote-banner{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
  padding:28px;
  background:#2a1d14;
  color:#fff3e5;
  border-radius:2px;
  margin-bottom:28px;
}

.quote-banner h1{
  font-family:'Playfair Display', serif;
  font-size:clamp(36px, 5vw, 64px);
  line-height:1;
  margin:12px 0;
}

.quote-banner-copy p{
  color:#e6d8c8;
}

.quote-rating-row{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.quote-tag{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.08);
  font-size:12px;
}

.quote-pill-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.quote-pill{
  padding:10px 14px;
  border:1px solid rgba(255,243,229,0.25);
  border-radius:999px;
  font-size:13px;
}

.quote-banner-card{
  align-self:start;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,243,229,0.12);
  border-radius:2px;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.quote-banner-card strong{
  font-family:'Playfair Display', serif;
  font-size:34px;
}

.quote-banner-card span{
  color:#e6d8c8;
  line-height:1.5;
}

.quote-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.5fr) minmax(320px, 0.85fr);
  gap:24px;
  align-items:start;
}

.quote-main,
.quote-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.quote-image-card{
  overflow:hidden;
}

.quote-image{
  min-height:360px;
  background-size:cover;
  background-position:center;
}

.quote-card{
  padding:24px;
}

.quote-card-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  margin-bottom:22px;
}

.quote-card-head-tight{
  margin-bottom:10px;
}

.quote-status{
  background:#f6ebde;
  color:#9b6331;
  border-radius:999px;
  padding:10px 14px;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.quote-inline-action{
  border:none;
  background:none;
  padding:0;
  color:#1f7ae0;
  font-family:'Lora', serif;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}

.quote-occupancy{
  margin-bottom:12px;
  color:#817062;
  font-size:17px;
}

.quote-stay-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:0;
}

.quote-stay-cell{
  padding:4px 18px 8px 0;
}

.quote-stay-cell + .quote-stay-cell{
  border-left:1px solid rgba(39,28,18,0.08);
  padding-left:18px;
}

.quote-stay-cell span{
  display:block;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#85715f;
  margin-bottom:8px;
}

.quote-stay-cell strong{
  display:block;
  font-family:'Playfair Display', serif;
  font-size:28px;
  line-height:1.15;
}

.quote-spec-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-bottom:22px;
}

.quote-spec-grid div,
.quote-price-line{
  padding:14px 0;
  border-top:1px solid rgba(39,28,18,0.08);
}

.quote-copy-block{
  margin-top:10px;
}

.quote-copy-block p:last-child,
.quote-card > p:last-child{
  line-height:1.7;
  color:#5f4736;
}

.quote-policy-callout,
.quote-price-line,
.quote-savings-box{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
}

.quote-policy-callout{
  padding:16px 18px;
  margin:18px 0;
  border-radius:16px;
  background:#f6ebde;
}

.quote-total-line strong,
.quote-savings-box strong{
  color:#c47a2c;
}

.quote-savings-box{
  margin:20px 0 18px;
  padding:18px;
  border-radius:2px;
  background:#f6ebde;
  flex-wrap:wrap;
}

.quote-savings-box p{
  width:100%;
  color:#5f4736;
  line-height:1.6;
}

.quote-payment-note-box{
  padding:16px 18px;
  border-radius:16px;
  background:#fbf3e7;
  border:1px solid rgba(196,122,44,0.12);
  margin-bottom:18px;
}

.quote-payment-note-box p:last-child{
  margin-top:6px;
  line-height:1.6;
  color:#5f4736;
}

.quote-pay-btn{
  width:100%;
  border:none;
  border-radius:14px;
  padding:16px 18px;
  background:#2a1d14;
  color:#fff;
  font-family:'Playfair Display', serif;
  font-size:18px;
  cursor:pointer;
  transition:background 0.25s ease;
}

.quote-pay-btn:hover{
  background:#c47a2c;
}

.quote-pay-note{
  margin-top:12px;
  font-size:13px;
  color:#6d5340;
  line-height:1.6;
}

.quote-timeline{
  padding-left:18px;
  margin-top:14px;
  color:#5f4736;
  line-height:1.8;
}

.hidden{
  display:none !important;
}

@media(max-width:1024px){
  .admin-hero,
  .admin-layout,
  .quote-layout,
  .quote-banner{
    grid-template-columns:1fr;
  }

  .admin-grid-3,
  .admin-grid-4{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:720px){
  .admin-shell,
  .quote-shell{
    padding:28px 16px 60px;
  }

  .admin-form,
  .quote-summary-card,
  .quote-list-card,
  .quote-card{
    padding:20px;
  }

  .admin-grid-2,
  .admin-grid-3,
  .admin-grid-4,
  .quote-spec-grid,
  .quote-stay-grid{
    grid-template-columns:1fr;
  }

  .quote-stay-cell + .quote-stay-cell{
    border-left:none;
    border-top:1px solid rgba(39,28,18,0.08);
    padding-left:0;
    padding-top:18px;
  }

  .admin-actions{
    flex-direction:column;
  }

  .quote-page-empty h1{
    font-size:38px;
  }
}

/* =========================
   QUOTE PAGE REFINEMENT
========================= */

.quote-shell{
  background:#f5f7fb;
}

.quote-page-body{
  font-family:'Plus Jakarta Sans', sans-serif;
  color:#1f2937;
}

.quote-page-body .quote-card,
.quote-page-body .quote-image-card{
  background:#ffffff;
  border:1px solid #d9e2ec;
  border-radius:2px;
  box-shadow:none;
  backdrop-filter:none;
}

.quote-page-body h1,
.quote-page-body h2,
.quote-page-body strong,
.quote-page-body .quote-pay-btn{
  font-family:'Plus Jakarta Sans', sans-serif;
}

.quote-layout{
  grid-template-columns:minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap:20px;
}

.quote-main,
.quote-sidebar{
  gap:20px;
}

.quote-hotel-card{
  padding:0;
  overflow:hidden;
}

.quote-hotel-grid{
  display:grid;
  grid-template-columns:minmax(300px, 0.95fr) minmax(0, 1.25fr);
}

.quote-image-card-embedded{
  border:none;
  border-right:1px solid #d9e2ec;
  border-radius:0;
}

.quote-image{
  min-height:330px;
}

.quote-hotel-copy{
  padding:28px 28px 24px;
}

.quote-page-kicker{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#2563eb;
  margin-bottom:12px;
}

.quote-rating-row{
  gap:10px;
  margin-bottom:12px;
}

.quote-rating-row span:first-child{
  color:#f4b400;
  font-size:19px;
  letter-spacing:1px;
}

.quote-tag{
  padding:7px 12px;
  border-radius:2px;
  background:#eef4ff;
  border:1px solid #c7dafc;
  color:#2563eb;
  font-size:12px;
  font-weight:600;
}

.quote-page-body h1{
  font-size:24px;
  line-height:1.28;
  letter-spacing:-0.03em;
  color:#111827;
  margin:0 0 10px;
}

.quote-page-body h2{
  font-size:18px;
  line-height:1.35;
  letter-spacing:-0.02em;
  color:#111827;
  margin:0;
}

.quote-hotel-copy #quoteAddress,
.quote-hotel-copy #quoteLocation{
  font-size:14px;
  line-height:1.65;
  color:#4b5563;
}

.quote-pill-row{
  margin-top:20px;
  gap:10px;
}

.quote-pill{
  background:#f8fafc;
  border:1px solid #d9e2ec;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  color:#334155;
  padding:9px 12px;
}

.quote-card{
  padding:24px 26px;
}

.quote-section-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#64748b;
  margin-bottom:8px;
}

.quote-stay-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.quote-stay-cell{
  padding:0 18px 0 0;
}

.quote-stay-cell + .quote-stay-cell{
  border-left:1px solid #e5e7eb;
  padding-left:18px;
}

.quote-stay-cell span{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  color:#6b7280;
  margin-bottom:8px;
}

.quote-stay-cell strong{
  font-size:16px;
  font-weight:800;
  line-height:1.4;
  color:#111827;
}

.quote-stay-cell small{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:#64748b;
  line-height:1.5;
}

.quote-card-head{
  margin-bottom:12px;
}

.quote-inline-action{
  color:#1d4ed8;
  font-size:14px;
  font-weight:700;
}

.quote-occupancy{
  margin-bottom:18px;
  color:#6b7280;
  font-size:15px;
}

.quote-spec-grid{
  gap:0;
  margin-bottom:18px;
}

.quote-spec-grid div{
  padding:14px 0;
  border-top:1px solid #eef2f7;
}

.quote-spec-grid span,
.quote-price-line span,
.quote-policy-callout span,
.quote-savings-box span{
  font-size:13px;
  font-weight:600;
  color:#6b7280;
}

.quote-spec-grid strong,
.quote-price-line strong,
.quote-policy-callout strong,
.quote-savings-box strong{
  font-size:15px;
  font-weight:700;
  color:#111827;
}

.quote-copy-label{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#64748b;
  margin-bottom:8px;
}

.quote-copy-block p:last-child,
.quote-card > p:last-child{
  font-size:15px;
  line-height:1.75;
  color:#374151;
}

.quote-policy-callout{
  justify-content:space-between;
  background:#f0fdf4;
  border:1px solid #bbf7d0;
  border-radius:14px;
  padding:16px 18px;
}

.quote-policy-callout span{
  color:#15803d;
}

.quote-policy-callout strong{
  color:#166534;
}

.quote-checkout-card{
  position:sticky;
  top:108px;
  padding:0;
  overflow:hidden;
}

.quote-checkout-card > .quote-section-label,
.quote-checkout-card > h2,
.quote-checkout-card > .quote-price-line,
.quote-checkout-card > .quote-savings-box,
.quote-checkout-card > .quote-payment-note-box,
.quote-checkout-card > .quote-pay-btn,
.quote-checkout-card > .quote-pay-note{
  margin-left:24px;
  margin-right:24px;
}

.quote-checkout-card > .quote-section-label{
  margin-top:24px;
}

.quote-checkout-card > h2{
  margin-bottom:16px;
}

.quote-price-hero{
  background:#eef4ff;
  border-top:1px solid #d9e2ec;
  border-bottom:1px solid #d9e2ec;
  padding:22px 24px;
}

.quote-price-hero span{
  display:block;
  font-size:13px;
  font-weight:700;
  color:#475569;
  margin-bottom:8px;
}

.quote-price-hero strong{
  display:block;
  font-size:34px;
  font-weight:800;
  letter-spacing:-0.04em;
  color:#111827;
}

.quote-price-line{
  padding:16px 0;
  border-top:1px solid #eef2f7;
}

.quote-savings-box{
  margin:18px 24px;
  border-radius:14px;
  background:#f8fafc;
  border:1px solid #d9e2ec;
}

.quote-savings-box p{
  font-size:14px;
  color:#334155;
}

.quote-payment-note-box{
  margin-bottom:18px;
  background:#fffdfa;
  border:1px solid #fde68a;
  border-radius:14px;
}

.quote-payment-note-box p:last-child{
  font-size:14px;
  color:#4b5563;
}

.quote-pay-btn{
  margin-bottom:10px;
  border-radius:2px;
  background:#1d4ed8;
  font-size:16px;
  font-weight:800;
}

.quote-pay-btn:hover{
  background:#1e40af;
}

.quote-pay-note{
  margin-bottom:24px;
  font-size:12px;
  color:#64748b;
}

.quote-timeline{
  margin-top:8px;
  padding-left:18px;
}

.quote-timeline li{
  font-size:15px;
  line-height:1.8;
  color:#374151;
}

@media(max-width:1024px){
  .quote-hotel-grid{
    grid-template-columns:1fr;
  }

  .quote-image-card-embedded{
    border-right:none;
    border-bottom:1px solid #d9e2ec;
  }

  .quote-layout{
    grid-template-columns:1fr;
  }

  .quote-checkout-card{
    position:static;
  }
}

@media(max-width:720px){
  .quote-card{
    padding:20px;
  }

  .quote-hotel-copy{
    padding:20px;
  }

  .quote-page-body h1{
    font-size:22px;
  }

  .quote-price-hero strong{
    font-size:28px;
  }
}

/* =========================
   QUOTE PAGE WARM OVERRIDES
========================= */

.quote-shell{
  background:
    radial-gradient(circle at top left, rgba(216,138,59,0.12), transparent 30%),
    linear-gradient(180deg, #fbf5ee 0%, #f6efe7 100%);
}

.quote-page-body .quote-card,
.quote-page-body .quote-image-card{
  border:1px solid rgba(39,28,18,0.12);
}

.quote-page-kicker{
  color:#b86a20;
}

.quote-tag{
  background:#f6ebde;
  border:1px solid rgba(196,122,44,0.22);
  color:#9b6331;
}

.quote-section-label,
.quote-copy-label,
.quote-stay-cell span,
.quote-spec-grid span,
.quote-price-line span,
.quote-savings-box span,
.quote-price-hero span{
  color:#7b6a5c;
}

.quote-hotel-copy #quoteAddress,
.quote-hotel-copy #quoteLocation,
.quote-copy-block p:last-child,
.quote-card > p:last-child,
.quote-payment-note-box p:last-child,
.quote-savings-box p,
.quote-timeline li{
  color:#5f4736;
}

.quote-rating-row span:first-child{
  color:#d88a3b;
}

.quote-checkout-card{
  position:static;
}

.quote-price-hero{
  background:#f6ebde;
  border-top:1px solid rgba(39,28,18,0.08);
  border-bottom:1px solid rgba(39,28,18,0.08);
}

.quote-price-line{
  border-top:1px solid rgba(39,28,18,0.08);
}

.quote-savings-box{
  background:#fff8ef;
  border:1px solid rgba(196,122,44,0.18);
}

.quote-payment-note-box{
  background:#fcf5ea;
}

.quote-pay-btn{
  background:#271c12;
}

.quote-pay-btn:hover{
  background:#c47a2c;
}

.quote-policy-callout{
  background:#f3ede6;
  border:1px solid rgba(39,28,18,0.1);
}

.quote-policy-callout span{
  color:#8b5e34;
}

.quote-policy-callout strong{
  color:#271c12;
}

.quote-spec-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:0;
  margin-bottom:20px;
  border-top:1px solid rgba(39,28,18,0.08);
}

.quote-spec-grid div{
  padding:18px 18px 18px 0;
  border-bottom:1px solid rgba(39,28,18,0.08);
}

.quote-spec-grid div:nth-child(odd){
  border-right:1px solid rgba(39,28,18,0.08);
  padding-right:20px;
}

.quote-spec-grid div:nth-child(even){
  padding-left:20px;
}

@media(max-width:720px){
  .quote-spec-grid{
    grid-template-columns:1fr;
  }

  .quote-spec-grid div:nth-child(odd){
    border-right:none;
    padding-right:0;
  }

  .quote-spec-grid div:nth-child(even){
    padding-left:0;
  }
}

/* =========================
   QUOTE PAGE FINESSE
========================= */

.quote-section-shell{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.quote-section-label-outside{
  margin-left:4px;
  margin-bottom:0;
}

.quote-spec-grid span{
  display:inline-block;
  min-width:122px;
  margin-right:14px;
}

.quote-spec-grid strong,
.quote-price-line strong,
.quote-policy-callout strong,
.quote-savings-box strong{
  font-weight:600 !important;
}

.quote-savings-box-strong{
  display:flex;
  flex-direction:column;
  gap:0;
  padding:0;
  overflow:hidden;
}

.quote-savings-box-strong > .quote-copy-label{
  padding:18px 18px 0;
  margin-bottom:6px;
}

.quote-savings-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
  padding:16px 18px;
  border-top:1px solid rgba(196,122,44,0.12);
}

.quote-savings-row:first-child{
  border-top:none;
}

.quote-savings-row span{
  font-size:13px;
  font-weight:600;
  color:#7b6a5c;
}

.quote-savings-row strong{
  font-size:16px;
  font-weight:700 !important;
}

.quote-checkout-card > h2{
  margin-top:24px;
}

/* =========================
   QUOTE PAGE FINAL LAYOUT
========================= */

.quote-section-headline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-left:4px;
}

.quote-room-card h2,
.quote-section-shell .quote-card h2{
  margin-bottom:12px;
}

.quote-spec-grid{
  border-top:none;
}

.quote-spec-grid div{
  border-bottom:none;
}

.quote-spec-grid div:nth-child(odd){
  border-right:none;
}

.quote-pay-btn{
  display:block;
  width:calc(100% - 48px);
  margin:8px auto 0;
}

.quote-payment-note-box{
  margin-top:16px;
}

@media(max-width:720px){
  .quote-section-headline{
    align-items:flex-start;
    flex-direction:column;
  }

  .quote-pay-btn{
    width:calc(100% - 32px);
  }
}
