/* ===========================================================
   THE SHOW BARN — shared stylesheet
   =========================================================== */

:root{
  --forest: #333c2c;
  --forest-deep: #262d20;
  --cream: #f5f0e3;
  --cream-2: #ede6d3;
  --white: #ffffff;
  --tan: #cbb994;
  --tan-dark: #b89f70;
  --text: #2b2b22;
  --muted: #6d6d5e;
  --muted-light: rgba(255,255,255,.68);
  --border: #e2dbc6;
  --shadow: 0 20px 50px rgba(38,45,32,.18);
  --radius: 4px;
}

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

html{ scroll-behavior:smooth; }

body{
  font-family:'Jost', sans-serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

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

h1,h2,h3,h4{
  font-family:'Playfair Display', serif;
  font-weight:600;
  line-height:1.18;
  letter-spacing:.005em;
}
em, .script{
  font-style:italic;
  font-weight:400;
}

.wrap{ max-width:1200px; margin:0 auto; padding:0 3rem; }
@media(max-width:900px){ .wrap{ padding:0 1.4rem; } }

.section-label{
  display:block;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--tan-dark);
  margin-bottom:.9rem;
}
.section-title{
  font-size:clamp(1.7rem,3vw,2.5rem);
  margin-bottom:1rem;
}
.section-sub{
  color:var(--muted);
  max-width:640px;
  margin:0 auto 2rem;
  font-size:.98rem;
}
.center{ text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.85rem 1.6rem;
  font-size:.82rem;
  font-weight:500;
  letter-spacing:.03em;
  border-radius:var(--radius);
  border:1px solid transparent;
  transition:all .25s ease;
  white-space:nowrap;
}
.btn-tan{ background:var(--tan); color:var(--forest-deep); }
.btn-tan:hover{ background:var(--tan-dark); }
.btn-outline-white{ border-color:rgba(255,255,255,.5); color:var(--white); }
.btn-outline-white:hover{ background:rgba(255,255,255,.12); border-color:var(--white); }
.btn-outline-forest{ border-color:var(--forest); color:var(--forest); }
.btn-outline-forest:hover{ background:var(--forest); color:var(--white); }
.btn-forest{ background:var(--forest); color:var(--white); }
.btn-forest:hover{ background:var(--forest-deep); }

/* ---------- Nav ---------- */
header.site-nav{
  position:sticky; top:0; z-index:200;
  background:var(--forest);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{
  max-width:1300px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 2.5rem;
}
.nav-logo{
  display:flex; align-items:center; gap:.5rem;
  font-family:'Playfair Display', serif;
  color:var(--white);
  font-size:1.05rem;
  letter-spacing:.14em;
}
.nav-logo .the{
  display:block; font-size:.6rem; letter-spacing:.3em; color:var(--tan); text-align:center;
}
.nav-logo .mark{ font-size:1.4rem; color:var(--tan); }
.nav-logo-text{ display:flex; flex-direction:column; align-items:flex-start; line-height:1.1; }
.nav-logo-text b{ font-size:1.25rem; letter-spacing:.16em; font-weight:600; }
.nav-logo-text span{ font-size:.55rem; letter-spacing:.28em; color:rgba(255,255,255,.55); text-transform:uppercase; }
.nav-logo-eyebrow{ font-size:.6rem; letter-spacing:.32em; color:var(--tan); font-style:italic; }

.nav-links{ display:flex; align-items:center; gap:2.1rem; }
.nav-links a{
  color:rgba(255,255,255,.82);
  font-size:.86rem;
  letter-spacing:.03em;
  padding:.3rem 0;
  border-bottom:1px solid transparent;
  transition:color .2s;
}
.nav-links a:hover, .nav-links a.active{ color:var(--tan); border-color:var(--tan); }
.nav-cta-wrap{ display:flex; align-items:center; gap:1.6rem; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:.4rem; }
.nav-toggle span{ width:24px; height:2px; background:var(--white); display:block; }

@media(max-width:960px){
  .nav-links{
    position:fixed; top:64px; left:0; right:0; height:calc(100vh - 64px);
    background:var(--forest); overflow-y:auto;
    flex-direction:column; padding:2rem; gap:1.4rem;
    transform:translateY(-110%); transition:transform .3s ease; z-index:150;
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-toggle{ display:flex; }
  .nav-cta-wrap .btn{ display:none; }
  .nav-cta-wrap{ gap:0; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:88vh;
  display:flex; align-items:flex-end;
  background:var(--forest);
  overflow:hidden;
}
.hero-small{ min-height:60vh; }
.hero-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
}
.hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(30,36,24,.85) 5%, rgba(30,36,24,.28) 55%, rgba(30,36,24,.15) 100%);
}
.hero-content{
  position:relative; z-index:2;
  padding:3.5rem 3rem 4rem;
  max-width:640px;
}
.hero-content .section-label{ color:var(--tan); }
.hero-content h1{
  color:var(--white);
  font-size:clamp(2rem,4.4vw,3.1rem);
  margin-bottom:1rem;
}
.hero-content p{
  color:rgba(255,255,255,.78);
  font-size:.98rem;
  max-width:520px;
  margin-bottom:1.6rem;
}
.hero-ctas{ display:flex; gap:1rem; flex-wrap:wrap; }

.knot-badge{
  position:absolute; z-index:3; right:6%; top:20%;
  width:118px; height:118px;
  display:flex; align-items:center; justify-content:center;
  transform:rotate(-8deg);
}
.knot-badge img{
  width:100%; height:100%; object-fit:contain;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,.28));
}
@media(max-width:700px){ .knot-badge{ width:88px; height:88px; right:4%; top:12%; } }

/* ---------- Sections ---------- */
.section{ padding:5.5rem 0; }
.section.tight{ padding:3.5rem 0; }
.section-dark{ background:var(--forest); color:var(--white); }
.section-dark .section-title{ color:var(--white); }
.section-dark p{ color:rgba(255,255,255,.72); }
.section-cream{ background:var(--cream); }
.section-cream2{ background:var(--cream-2); }

/* two column feature row */
.feature-row{
  display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:center;
}
.feature-row.reverse .ft-img{ order:2; }
.feature-row.reverse .ft-text{ order:1; }
.ft-img img{ border-radius:6px; box-shadow:var(--shadow); width:100%; height:420px; object-fit:cover; }
.ft-text .section-label{ color:var(--tan); }
.ft-text h2{ font-size:clamp(1.5rem,2.6vw,2.1rem); margin-bottom:1rem; }
.section-dark .ft-text .section-label{ color:var(--tan); }
@media(max-width:900px){
  .feature-row{ grid-template-columns:1fr; gap:2rem; }
  .feature-row.reverse .ft-img, .feature-row.reverse .ft-text{ order:unset; }
  .ft-img img{ height:280px; }
}

/* full bleed image */
.full-photo{ width:100%; height:60vh; object-fit:cover; display:block; }
.full-photo.short{ height:38vh; }

/* Matterport tour */
.tour-embed-wrap{ position:relative; border-radius:6px; overflow:hidden; box-shadow:var(--shadow); }
.tour-embed{ position:relative; padding-top:56.25%; height:0; }
.tour-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.tour-caption{ text-align:center; margin-top:1.5rem; font-family:'Playfair Display',serif; font-style:italic; color:var(--tan); }

/* Big italic statement w/ image overlay */
.statement{
  position:relative; text-align:center;
  padding:6rem 2rem;
}
.statement h2{
  font-size:clamp(2rem,5vw,3.4rem);
  font-style:italic;
  font-weight:500;
  color:var(--forest);
  max-width:820px; margin:0 auto;
}
.statement .stmt-img{
  width:220px; height:280px; object-fit:cover; border-radius:50%;
  margin:1.5rem auto; box-shadow:var(--shadow);
}
@media(max-width:700px){ .statement .stmt-img{ width:150px; height:190px; } }

/* Numbered plan blocks */
.plan-row{ display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:center; padding:4rem 0; border-bottom:1px solid rgba(255,255,255,.1); }
.plan-row:last-child{ border-bottom:none; }
.plan-row .num{ font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--tan); display:block; margin-bottom:.6rem; }
.plan-row h3{ color:var(--white); font-size:clamp(1.4rem,2.4vw,1.9rem); margin-bottom:1rem; }
.plan-row img{ border-radius:6px; width:100%; height:380px; object-fit:cover; }
@media(max-width:900px){ .plan-row{ grid-template-columns:1fr; gap:1.6rem; padding:2.5rem 0; } .plan-row img{ height:250px; } }

/* Photo strip / gallery grid */
.photo-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:.6rem; }
.photo-strip img{ width:100%; height:220px; object-fit:cover; border-radius:4px; }
@media(max-width:900px){ .photo-strip{ grid-template-columns:repeat(2,1fr); } .photo-strip img{ height:170px; } }

.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:.9rem; }
.gallery-grid img{ width:100%; height:260px; object-fit:cover; border-radius:4px; transition:transform .4s ease, opacity .4s ease; cursor:pointer; }
.gallery-grid img:hover{ transform:scale(1.02); opacity:.92; }
.gallery-grid .g-hidden{ display:none; }
@media(max-width:900px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } .gallery-grid img{ height:200px; } }

/* Card overlay (retreat / events) */
.card-overlay-wrap{ position:relative; }
.card-overlay{
  position:relative; margin:-6rem auto 0; max-width:560px;
  background:var(--cream); padding:2.6rem 2.8rem; text-align:center;
  box-shadow:var(--shadow); z-index:5; border-radius:4px;
}
.card-overlay .section-label{ color:var(--tan-dark); }
.card-overlay h2{ font-size:clamp(1.5rem,3vw,2.1rem); margin-bottom:1.2rem; }
.card-overlay p{ color:var(--muted); margin-bottom:1.4rem; font-size:.92rem; }
@media(max-width:700px){ .card-overlay{ margin-top:-3.5rem; padding:2rem 1.4rem; } }

/* FAQ accordion */
.faq{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid rgba(255,255,255,.18); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; color:var(--white);
  font-family:'Jost',sans-serif; font-size:1rem; font-weight:500;
  padding:1.4rem 0; display:flex; justify-content:space-between; align-items:center;
}
.faq-q .icon{ font-size:1.3rem; color:var(--tan); transition:transform .3s; }
.faq-item.open .faq-q .icon{ transform:rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-a{ max-height:400px; }
.faq-a p{ padding-bottom:1.4rem; color:rgba(255,255,255,.68); font-size:.92rem; max-width:680px; }

/* Cabin / accommodation cards */
.cabin-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.cabin-card{ background:var(--white); border-radius:6px; overflow:hidden; box-shadow:var(--shadow); }
.cabin-card img{ width:100%; height:210px; object-fit:cover; }
.cabin-card-body{ padding:1.6rem; }
.cabin-card-body p.desc{ font-size:.85rem; color:var(--muted); margin-bottom:.9rem; }
.cabin-card-body ul{ margin-bottom:1.1rem; }
.cabin-card-body li{ font-size:.82rem; color:var(--muted); padding-left:1.6rem; position:relative; margin-bottom:.5rem; }
.cabin-card-body li::before{
  content:'\2713'; color:#fff; font-size:.6rem; font-weight:700;
  width:16px; height:16px; border-radius:50%; background:var(--tan-dark);
  display:flex; align-items:center; justify-content:center;
  position:absolute; left:0; top:.05em;
}
.cabin-card-body h3{ font-size:1.15rem; margin-bottom:.6rem; }
@media(max-width:900px){ .cabin-grid{ grid-template-columns:1fr; } }

/* Contact page */
.contact-hero{ background:var(--forest); }
.contact-grid{ display:grid; grid-template-columns:.9fr 1.3fr; gap:4rem; align-items:start; }
.contact-info h2{ font-size:1.5rem; margin-bottom:1.6rem; }
.info-block{ margin-bottom:1.5rem; }
.info-block h4{ font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--tan-dark); margin-bottom:.35rem; }
.info-block p, .info-block a{ font-size:.9rem; color:var(--muted); }
.info-block a:hover{ color:var(--forest); }
.social-links{ display:flex; gap:1rem; }
.social-links a{ font-size:.85rem; color:var(--forest); border-bottom:1px solid var(--tan); padding-bottom:2px; }

.form-card{ background:var(--white); border-radius:6px; padding:2.2rem; box-shadow:var(--shadow); border:1px solid var(--border); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.form-row.full{ grid-template-columns:1fr; }
.form-group label{ display:block; font-size:.78rem; color:var(--muted); margin-bottom:.4rem; }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:.8rem .95rem; border:1px solid var(--border); border-radius:4px;
  font-family:'Jost',sans-serif; font-size:.92rem; background:var(--cream); color:var(--text);
}
.form-group textarea{ min-height:120px; resize:vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{ outline:2px solid var(--tan); background:var(--white); }
.form-success, .form-error{ display:none; border-radius:4px; padding:1rem 1.2rem; font-size:.88rem; margin-top:1rem; }
.form-success{ background:#e7f0e2; border:1px solid #bcd8ab; color:#33532a; }
.form-error{ background:#f5e5e2; border:1px solid #dcb0a6; color:#7a3323; }
@media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:2.5rem; } .form-row{ grid-template-columns:1fr; } }

/* Footer */
footer{ background:var(--forest-deep); color:rgba(255,255,255,.75); padding:4.5rem 0 0; }
.footer-brand{ text-align:center; padding-bottom:2.5rem; border-bottom:1px solid rgba(255,255,255,.09); }
.footer-brand .nav-logo{ justify-content:center; margin-bottom:1.1rem; }
.footer-brand p{ max-width:420px; margin:0 auto; font-size:.9rem; color:rgba(255,255,255,.55); }
.footer-cols{ display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; padding:3rem 0; text-align:center; }
.footer-cols h4{ font-family:'Jost',sans-serif; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--tan); margin-bottom:1rem; font-weight:600; }
.footer-cols p, .footer-cols a{ font-size:.86rem; color:rgba(255,255,255,.62); display:block; margin-bottom:.5rem; }
.footer-cols a:hover{ color:var(--tan); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.09);
  padding:1.4rem 3rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:.6rem;
  font-size:.76rem; color:rgba(255,255,255,.4);
}
@media(max-width:800px){ .footer-cols{ grid-template-columns:1fr; text-align:center; } .footer-bottom{ justify-content:center; text-align:center; } }

/* Contact page redesign */
.showbarn-page.contact-page .contact-hero{
  padding: 1.5rem 0 0;
  background: var(--forest);
}

.showbarn-page.contact-page .contact-hero-frame{
  width: min(1800px, calc(100% - 2rem));
  margin: 0 auto;
}

.showbarn-page.contact-page .contact-hero-image{
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  filter: brightness(.82);
}

.showbarn-page.contact-page .contact-panel-band{
  background: #f6f1e5;
  padding: 4.3rem 0 5.2rem;
}

.showbarn-page.contact-page .contact-panel-shell{
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 3.4rem;
  background: var(--white);
  border-left: 1px solid #ddd7c8;
  border-right: 1px solid #ddd7c8;
  padding: 4rem 4rem 4.4rem;
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
}

.showbarn-page.contact-page .contact-panel-copy{
  padding: 2rem 0;
}

.showbarn-page.contact-page .contact-panel-copy h1{
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: .95;
  color: #364036;
  margin: 0 0 1rem;
}

.showbarn-page.contact-page .contact-panel-copy p{
  color: #596055;
  font-size: .96rem;
  line-height: 1.78;
  margin-bottom: 1.15rem;
  max-width: 32rem;
}

.showbarn-page.contact-page .contact-list{
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  max-width: 33rem;
}

.showbarn-page.contact-page .contact-list div{
  padding-top: 1rem;
  border-top: 1px solid #eae3d4;
}

.showbarn-page.contact-page .contact-list span{
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--tan-dark);
  margin-bottom: .35rem;
}

.showbarn-page.contact-page .contact-list p{
  margin: 0;
  font-size: .9rem;
}

.showbarn-page.contact-page .contact-panel-form{
  display: flex;
  align-items: center;
}

.showbarn-page.contact-page .contact-form{
  width: 100%;
  background: var(--white);
  border: 1px solid #eee6d7;
  padding: 1.4rem;
}

.showbarn-page.contact-page .contact-form .form-row{
  gap: .75rem;
}

.showbarn-page.contact-page .contact-form .form-group label{
  color: #6e6b62;
}

.showbarn-page.contact-page .contact-form input,
.showbarn-page.contact-page .contact-form select,
.showbarn-page.contact-page .contact-form textarea{
  background: #f7f7f4;
  border: 1px solid #ece6d8;
  border-radius: 0;
  color: #384137;
}

.showbarn-page.contact-page .contact-form textarea{
  min-height: 130px;
}

.showbarn-page.contact-page .contact-submit{
  width: 100%;
  justify-content: center;
  margin-top: .4rem;
  padding: .92rem 1rem;
}

.showbarn-page.contact-page .form-success,
.showbarn-page.contact-page .form-error{
  margin-top: 1rem;
}

@media (max-width: 900px){
  .showbarn-page.contact-page .contact-panel-shell{
    grid-template-columns: 1fr;
    padding: 2rem 1.4rem 2.4rem;
  }

  .showbarn-page.contact-page .contact-panel-copy{
    padding: 0;
  }

  .showbarn-page.contact-page .contact-hero-image{
    height: 340px;
  }
}

@media (max-width: 700px){
  .showbarn-page.contact-page .contact-hero-frame{
    width: calc(100% - 1rem);
  }

  .showbarn-page.contact-page .contact-hero-image{
    height: 280px;
  }
}

/* Utility */
.mt-2{ margin-top:2rem; }
.load-more-wrap{ text-align:center; margin-top:2.4rem; }

/* ===========================================================
   SHOW BARN HOME REDESIGN
   =========================================================== */

.showbarn-page{
  --forest: #465244;
  --forest-deep: #364036;
  --cream: #f3ead9;
  --cream-2: #e7ddc9;
  --tan: #d5c1a0;
  --tan-dark: #c0a77f;
  --text: #f5f1e6;
  --muted: #d6d0c0;
  background: var(--forest);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
}

.showbarn-page .page-grid-lines{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 240px 100%, 100% 420px;
}

.showbarn-page .site-nav{
  position: sticky;
  top: 0;
  background: rgba(70,82,68,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.showbarn-page .nav-inner-home{
  max-width: 1700px;
  padding: 1.25rem 2.2rem;
}

.showbarn-page .nav-logo-home{
  color: var(--text);
}

.showbarn-page .nav-logo-home .nav-logo-eyebrow{
  font-family: 'Cormorant Garamond', serif;
}

.showbarn-page .nav-logo-home b{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}

.showbarn-page .showbarn-links{
  gap: 2.6rem;
}

.showbarn-page .showbarn-links a{
  color: rgba(245,241,230,.82);
  text-transform: none;
  font-size: .82rem;
  letter-spacing: .06em;
}

.showbarn-page .btn{
  border-radius: 0;
  padding: .8rem 1.5rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: none;
}

.showbarn-page .btn-tan{
  background: #d9c8a6;
  color: #1b221b;
}

.showbarn-page .btn-outline-white{
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
}

.showbarn-page main,
.showbarn-page footer{
  position: relative;
  z-index: 1;
}

.showbarn-page .section-shell{
  width: min(1500px, calc(100% - 3rem));
  margin: 0 auto;
}

.showbarn-page .hero-shell{
  padding: 1.2rem 0 0;
}

.showbarn-page .hero-frame{
  width: min(1840px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255,255,255,.06);
  background: #394538;
}

.showbarn-page .hero-image{
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
  filter: brightness(.78);
}

.showbarn-page .hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  --shell-inset: calc((100vw - min(1500px, calc(100vw - 3rem))) / 2);
  --frame-inset: calc((100vw - min(1840px, calc(100vw - 2rem))) / 2);
  padding: 2.5rem 4rem 2.5rem max(2rem, calc(var(--shell-inset) - var(--frame-inset)));
}

.showbarn-page .hero-copy{
  width: min(520px, 46%);
}

.showbarn-page .eyebrow{
  margin: 0 0 .9rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #d8c8a4;
}

.showbarn-page .eyebrow.dark{
  color: #7a7158;
}

.showbarn-page .hero-copy h1,
.showbarn-page .feature-cream-copy h2,
.showbarn-page .banner-overlay-card h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -.02em;
}

.showbarn-page .hero-copy h1{
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.25;
  max-width: 20ch;
  margin: 0 0 1rem;
}

.showbarn-page .hero-text{
  max-width: 28rem;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(245,241,230,.84);
  margin: 0 0 1.4rem;
}

.showbarn-page .hero-actions{
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.showbarn-page .knot-badge{
  position: relative;
  right: auto;
  top: auto;
  width: 138px;
  height: 138px;
  align-self: flex-end;
  margin-bottom: 3rem;
}

.showbarn-page .intro-rows-band{
  background: var(--forest);
  padding: 4rem 0 1rem;
}

.showbarn-page .intro-row{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  padding: 2.5rem 0;
}

.showbarn-page .intro-row-reverse{
  grid-template-columns: 1.15fr .85fr;
}

.showbarn-page .intro-row-reverse .intro-row-image{
  order: 1;
  align-self: end;
}

.showbarn-page .intro-row-reverse .intro-row-copy{
  order: 2;
}

.showbarn-page .intro-row:not(.intro-row-reverse) .intro-row-image{
  align-self: start;
}

.showbarn-page .intro-row-copy p{
  max-width: 30rem;
  color: rgba(245,241,230,.85);
  font-size: 1.05rem;
  line-height: 1.8;
}

.showbarn-page .intro-row-copy .hero-actions{
  margin-top: 1.6rem;
}

.showbarn-page .intro-row-image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,.3), 0 10px 24px rgba(0,0,0,.2);
}

.showbarn-page .tour-band{
  padding: 2rem 0 4rem;
}

.showbarn-page .section-kicker{
  text-align: center;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c8ba91;
  margin-bottom: 1.2rem;
}

.showbarn-page .tour-intro{
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: rgba(245,241,230,.8);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
}

.showbarn-page .tour-card{
  display: block;
  position: relative;
  overflow: hidden;
  width: min(1100px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.showbarn-page .tour-card img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(.9) brightness(.82);
}

.showbarn-page .tour-play{
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.showbarn-page .tour-play span{
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #f5f1e6;
  margin-left: 5px;
}

.showbarn-page .tour-caption{
  text-align: center;
  margin: 1.4rem 0 0;
  color: #c8ba91;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: .02em;
}

.showbarn-page .cream-band{
  background: #f3ebdd;
  color: #343c31;
  padding: 4.5rem 0;
}

.showbarn-page .feature-cream{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.showbarn-page .feature-cream-copy{
  padding: 2rem 0;
}

.showbarn-page .feature-cream-copy h2{
  font-size: clamp(2.3rem, 3.8vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 1.2rem;
  max-width: 16ch;
}

.showbarn-page .feature-cream-copy p{
  max-width: 34rem;
  color: #5a594f;
  font-size: .96rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.showbarn-page .feature-cream-image img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 28px 60px rgba(0,0,0,.16);
}

.showbarn-page .dark-plans{
  background: var(--forest);
  padding: 1rem 0 4rem;
}

.showbarn-page .plan-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.showbarn-page .plan-row-reverse img{
  order: 2;
}

.showbarn-page .plan-row-reverse .plan-copy{
  order: 1;
}

.showbarn-page .plan-row img{
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.showbarn-page .plan-copy{
  padding: 0 2rem;
}

.showbarn-page .plan-copy h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .98;
  margin: 0 0 1rem;
}

.showbarn-page .plan-copy p{
  color: rgba(245,241,230,.78);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.showbarn-page .cabin-card-body h3{
  color: #263426;
}

.showbarn-page .cabin-card-body p.desc,
.showbarn-page .cabin-card-body li{
  color: #5a594f;
}

/* Accommodation page — centered cursive quote line between intro rows */
.showbarn-page .cabin-quote{
  text-align: center;
  font-family: 'Parisienne', cursive;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: #f5f1e6;
  max-width: 46rem;
  margin: 3rem auto;
}

/* Accommodation page — checkmark bullet list (Cabins Collection band) */
.showbarn-page .check-list{
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}

.showbarn-page .check-list li{
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: .7rem;
}

.showbarn-page .check-list li::before{
  content: '\2713';
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tan-dark);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .15em;
}

.showbarn-page .cabin-card-body li::before{
  background: var(--tan-dark);
  color: #fff;
}

.showbarn-page .banner-overlay-band{
  background-color: #f3ebdd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23c9b892' stroke-width='1' opacity='0.4'%3E%3Ccircle cx='60' cy='60' r='40'/%3E%3Ccircle cx='60' cy='60' r='26'/%3E%3Ccircle cx='0' cy='0' r='40'/%3E%3Ccircle cx='120' cy='0' r='40'/%3E%3Ccircle cx='0' cy='120' r='40'/%3E%3Ccircle cx='120' cy='120' r='40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  padding: 1rem 0 3rem;
}

.showbarn-page .banner-overlay-wrap{
  width: min(1500px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
}

.showbarn-page .banner-overlay-img{
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(.88);
}

.showbarn-page .banner-overlay-card{
  width: min(680px, calc(100% - 2rem));
  margin: -7rem auto 0;
  position: relative;
  background: #f5efe5;
  color: #374037;
  padding: 2.6rem 2.8rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.showbarn-page .banner-overlay-card h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: .04em;
  line-height: 1.2;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}

.showbarn-page .banner-overlay-card h2 em{
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.5em;
  margin-top: .15em;
}

.showbarn-page .hero-copy h1 em,
.showbarn-page .feature-cream-copy h2 em,
.showbarn-page .plan-copy h3 em,
.showbarn-page .banner-overlay-card h2 em{
  font-family: 'Parisienne', cursive;
  font-style: normal;
  font-weight: 400;
}

.showbarn-page .hero-copy h1 em{
  font-size: 1.2em;
  white-space: nowrap;
}

.showbarn-page .feature-cream-copy h2 em,
.showbarn-page .plan-copy h3 em{
  font-size: 1.2em;
}

.showbarn-page .banner-overlay-card p{
  color: #605d51;
  font-size: .92rem;
  line-height: 1.8;
  max-width: 34rem;
  margin: 0 auto 1.2rem;
}

/* The Space page — gold cursive tour quote */
.showbarn-page .space-tour-quote{
  max-width: 46rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-family: 'Parisienne', cursive;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  color: var(--tan);
}

/* Weddings page — intro heading row */
.showbarn-page .intro-heading-row{
  padding: 0 0 1rem;
  text-align: left;
}

.showbarn-page .intro-heading{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.25;
  max-width: 32ch;
  margin: 0;
  color: #f5f1e6;
}

.showbarn-page .intro-heading em{
  font-family: 'Parisienne', cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2em;
}

/* Weddings page — circular stamp badge between intro rows */
.showbarn-page .stamp-row{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin: -5rem 0;
}

.showbarn-page .stamp-badge{
  width: 172px;
  height: 172px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.4));
}

.showbarn-page .stamp-badge text{
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
}

/* Weddings page — "Fulfilling your dreams" stacked heading with overlapping photo */
.showbarn-page .dreams-band{
  background: #f3ebdd;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.showbarn-page .dreams-shell{
  position: relative;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
}

.showbarn-page .dreams-eyebrow{
  text-align: center;
  color: #7a7158;
}

.showbarn-page .dreams-heading{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: 1.22;
  color: #343c31;
  margin: 0;
}

.showbarn-page .dreams-heading em{
  font-family: 'Parisienne', cursive;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  font-size: 1.2em;
}

.showbarn-page .dreams-heading em.dreams-em-lg{
  font-size: 1.5em;
  display: inline-block;
  line-height: 1;
}

.showbarn-page .dreams-photo{
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(300px, 60%);
  border-radius: 4px;
  box-shadow: 0 24px 44px rgba(0,0,0,.4);
  z-index: 2;
}

/* Weddings page — CTA band with contact form */
.showbarn-page .banner-overlay-img.tall{
  height: 620px;
}

.showbarn-page .cta-card{
  width: min(600px, calc(100% - 2rem));
}

.showbarn-page .cta-card .contact-form{
  margin-top: 1.6rem;
  text-align: left;
}

.showbarn-page .cta-card .form-group{
  border: 1px solid #e4ddc9;
  background: #f7f7f4;
  padding: .55rem .9rem .5rem;
}

.showbarn-page .cta-card .form-group label{
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #8a8677;
  margin-bottom: .2rem;
}

.showbarn-page .cta-card .field-icon{
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #a39c86;
}

.showbarn-page .cta-card input,
.showbarn-page .cta-card select,
.showbarn-page .cta-card textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  color: #384137;
}

.showbarn-page .cta-card input:focus,
.showbarn-page .cta-card select:focus,
.showbarn-page .cta-card textarea:focus{
  outline: none;
  background: transparent;
}

.showbarn-page .cta-card textarea{
  min-height: 70px;
  resize: vertical;
}

.showbarn-page .cta-card .contact-submit{
  width: 100%;
  justify-content: center;
  margin-top: .4rem;
  padding: .92rem 1rem;
}

.showbarn-page .gallery-strip-band{
  background-color: #f3ebdd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23c9b892' stroke-width='1' opacity='0.4'%3E%3Ccircle cx='60' cy='60' r='40'/%3E%3Ccircle cx='60' cy='60' r='26'/%3E%3Ccircle cx='0' cy='0' r='40'/%3E%3Ccircle cx='120' cy='0' r='40'/%3E%3Ccircle cx='0' cy='120' r='40'/%3E%3Ccircle cx='120' cy='120' r='40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  padding: 0 0 2.5rem;
}

.showbarn-page .gallery-strip{
  width: min(1500px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .7rem;
}

.showbarn-page .gallery-strip img{
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.showbarn-page .faq-band{
  background: var(--forest);
  padding: 5.5rem 0;
}

.showbarn-page .faq-shell-center{
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.showbarn-page .faq-caps-title{
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 2.6rem;
}

.showbarn-page .faq-center{
  text-align: left;
}

.showbarn-page .faq-center .faq-item{
  background: rgba(255,255,255,.05);
  border-bottom: none;
  border-radius: 4px;
  margin-bottom: .7rem;
  padding: 0 1.5rem;
}

.showbarn-page .faq-center .faq-q{
  padding: 1.1rem 0;
}

.showbarn-page .faq-center .faq-a p{
  padding-bottom: 1.3rem;
}

.showbarn-page .faq-q span:first-child{
  padding-right: 1rem;
}

.showbarn-page .showbarn-footer{
  background: #404c3f;
  padding: 3rem 0 0;
}

.showbarn-page .footer-shell{
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 2.4rem;
}

.showbarn-page .footer-mark{
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.2rem;
}

.showbarn-page .footer-mark strong{
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  letter-spacing: .14em;
  font-weight: 500;
  line-height: .9;
}

.showbarn-page .footer-mark p{
  color: rgba(245,241,230,.7);
  margin-top: .8rem;
  line-height: 1.75;
}

.showbarn-page .footer-cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.showbarn-page .footer-cols h4{
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: #d5c1a0;
  margin-bottom: 1rem;
}

.showbarn-page .footer-cols p,
.showbarn-page .footer-cols a{
  color: rgba(245,241,230,.72);
  margin-bottom: .45rem;
  font-size: .88rem;
}

.showbarn-page .footer-bottom{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(245,241,230,.52);
  padding: 1.2rem 0 1.4rem;
  font-size: .76rem;
}

@media (max-width: 1100px){
  .showbarn-page .nav-inner-home{
    padding: 1rem 1.2rem;
  }

  .showbarn-page .hero-overlay{
    padding: 2rem;
  }

  .showbarn-page .hero-copy{
    width: 58%;
  }

  .showbarn-page .hero-image{
    height: 680px;
  }

  .showbarn-page .intro-row,
  .showbarn-page .intro-row-reverse,
  .showbarn-page .feature-cream,
  .showbarn-page .plan-row{
    grid-template-columns: 1fr;
  }

  .showbarn-page .stamp-row{
    margin: -2.9rem 0;
  }

  .showbarn-page .intro-row-reverse .intro-row-image,
  .showbarn-page .intro-row-reverse .intro-row-copy{
    order: initial;
  }

  .showbarn-page .plan-row-reverse img,
  .showbarn-page .plan-row-reverse .plan-copy{
    order: initial;
  }

  .showbarn-page .gallery-strip{
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
  }

  .showbarn-page .footer-cols{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px){
  .showbarn-page .showbarn-links{
    gap: 1.2rem;
  }

  .showbarn-page .hero-frame,
  .showbarn-page .banner-overlay-wrap{
    width: calc(100% - 1rem);
  }

  .showbarn-page .hero-overlay{
    position: relative;
    display: block;
    padding: 1.2rem 1rem 1.8rem;
  }

  .showbarn-page .hero-image{
    height: 520px;
  }

  .showbarn-page .hero-copy{
    width: 100%;
    padding-top: 0;
  }

  .showbarn-page .knot-badge{
    margin: 1.2rem 0 0 auto;
  }

  .showbarn-page .intro-rows-band{
    padding: 2rem 0 0;
  }

  .showbarn-page .intro-row{
    padding: 1.6rem 0;
    gap: 1.4rem;
  }

  .showbarn-page .intro-row-image img{
    height: 220px;
  }

  .showbarn-page .tour-card img,
  .showbarn-page .feature-cream-image img,
  .showbarn-page .plan-row img{
    height: 260px;
  }

  .showbarn-page .banner-overlay-band{
    padding: 1rem 0 4rem;
  }

  .showbarn-page .banner-overlay-img{
    height: 220px;
  }

  .showbarn-page .banner-overlay-card{
    margin-top: -3.5rem;
    padding: 2rem 1.4rem;
  }

  .showbarn-page .gallery-strip{
    grid-template-columns: repeat(2, 1fr);
  }

  .showbarn-page .faq-band{
    padding: 3.5rem 0;
  }

  .showbarn-page .stamp-badge{
    width: 92px;
    height: 92px;
  }

  .showbarn-page .stamp-row{
    margin: -1.8rem 0;
  }

  .showbarn-page .dreams-band{
    padding: 3rem 0 2.5rem;
  }

  .showbarn-page .banner-overlay-img.tall{
    height: 320px;
  }
}
