/* ============ TOKENS & RESET ============ */

:root{
  --navy: #0F1B33;
  --navy-deep: #0A1420;
  --gold: #B08D2E;
  --gold-light: #D4B876;
  --cream: #F4EDE1;
  --cream-dim: #E9E0CE;
  --ink: #3A3226;
  --line: rgba(176,141,46,0.35);
}

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

html, body{ height: 100%; }

body{
  background: var(--cream);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{ flex: 1; }

a{ color: inherit; text-decoration: none; }

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

/* ============ HEADER ============ */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 clamp(20px, 5vw, 64px);
}

.header-inner{
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

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

.brand-badge{
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.brand:hover .brand-badge{
  transform: rotate(8deg);
}

.brand-badge .badge-ring,
.brand-badge .badge-laurel{
  stroke: var(--gold);
}

.brand-badge .badge-tools{
  stroke: var(--cream);
}

.brand-word{
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
}

.brand-word span{
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold-light);
  margin-top: 4px;
  text-transform: uppercase;
}

.site-nav{
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a{
  position: relative;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.site-nav a::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(.2,.8,.2,1);
}

.site-nav a:hover{ color: var(--cream); }
.site-nav a:hover::after{ width: 100%; }

.book-btn{
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 22px;
  transition: background 0.35s ease, color 0.35s ease;
  white-space: nowrap;
}

.book-btn:hover{
  background: var(--gold);
  color: var(--navy-deep);
}

.header-hairline{
  height: 1px;
  background: var(--gold);
  width: 0%;
  animation: drawLine 1.4s 0.3s cubic-bezier(.16,.8,.2,1) forwards;
}

@keyframes drawLine{ to{ width: 100%; } }

@media (max-width: 780px){
  .site-nav{ display: none; }
  .header-inner{ height: 72px; }
  .brand-word{ font-size: 20px; }
}

/* ============ SHARED SECTION HELPERS ============ */

.section-eyebrow{
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.link-more{
  position: relative;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.link-more:hover{
  color: var(--gold);
  border-color: var(--navy);
}

.btn-primary{
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid var(--navy);
  transition: background 0.35s ease, color 0.35s ease;
}

.btn-primary:hover{
  background: transparent;
  color: var(--navy);
}

.btn-ghost{
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid var(--navy);
  transition: background 0.35s ease, color 0.35s ease;
}

.btn-ghost:hover{
  background: var(--navy);
  color: var(--cream);
}

/* ============ HERO ============ */

.hero{
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: clamp(64px, 12vw, 140px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 110px);
  text-align: center;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(244,237,225,0.55) 0%, rgba(244,237,225,0.7) 100%),
    url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content{
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.hero-watermark{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 140vw);
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.hero-watermark .badge-ring,
.hero-watermark .badge-laurel,
.hero-watermark .badge-tools{
  stroke: var(--navy);
}

.hero-content{ position: relative; z-index: 1; }

.hero-eyebrow{
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero h1{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(36px, 6.4vw, 68px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-sub{
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

.hero-actions{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ SERVICES TEASER ============ */

.services-teaser{
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) clamp(20px, 5vw, 64px);
  text-align: center;
}

.services-teaser h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.25;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 40px;
  text-align: left;
}

.service-card{
  background: var(--cream);
  padding: 32px 26px;
  transition: background 0.35s ease;
}

.service-card:hover{
  background: var(--cream-dim);
}

.service-num{
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.service-card h3{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p{
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  min-height: 62px;
}

.service-meta{
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.service-meta span:first-child{ color: var(--gold); font-weight: 500; }

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

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

/* ============ ABOUT TEASER ============ */

.about-teaser{
  background: var(--navy);
  color: var(--cream-dim);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 100px) clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 64px);
}

.about-teaser-photo{
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.about-teaser-photo::after{
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212,184,118,0.4);
  pointer-events: none;
}

.about-teaser-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}

.about-teaser-inner{
  text-align: left;
}

.about-teaser .section-eyebrow{ color: var(--gold-light); }

.about-teaser h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 34px);
  color: var(--cream);
  margin-bottom: 22px;
  line-height: 1.3;
}

.about-teaser p{
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--cream-dim);
}

.about-teaser .link-more{
  color: var(--gold-light);
  border-color: var(--gold);
}

.about-teaser .link-more:hover{
  color: var(--cream);
  border-color: var(--cream);
}

@media (max-width: 780px){
  .about-teaser{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-teaser-inner{ text-align: center; }
  .about-teaser-photo{ aspect-ratio: 16 / 10; }
}

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

.testimonials{
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 100px) clamp(20px, 5vw, 64px);
  text-align: center;
}

.testimonials h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.25;
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.testimonial-card{
  background: var(--cream-dim);
  border: 1px solid var(--line);
  padding: 30px 26px;
}

.testimonial-card p{
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
}

.testimonial-author{
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

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

/* ============ BOOK BANNER ============ */

.book-banner{
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 100px) clamp(20px, 5vw, 64px);
  text-align: center;
}

.book-banner h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 30px;
}

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

.site-footer{
  background: var(--navy);
  color: var(--cream-dim);
  padding: 40px clamp(20px, 5vw, 64px) 0;
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.footer-band{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 26px;
  flex-wrap: wrap;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-brand .brand-badge{ width: 34px; height: 34px; }

.footer-brand-word{
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1.1;
}

.footer-tagline{
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  text-align: center;
  flex: 1;
  min-width: 220px;
}

.footer-contact{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--cream-dim);
  flex-wrap: wrap;
}

.footer-contact a{ transition: color 0.3s ease; white-space: nowrap; }
.footer-contact a:hover{ color: var(--gold-light); }

.footer-divider{ color: var(--line); font-size: 12px; }

.footer-rule{
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 15%, var(--line) 85%, transparent);
}

.footer-bottom{
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(244,237,225,0.45);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-links{ display: flex; gap: 20px; }
.footer-bottom-links a{ color: rgba(244,237,225,0.45); transition: color 0.3s ease; }
.footer-bottom-links a:hover{ color: var(--gold-light); }

@media (max-width: 780px){
  .footer-band{ flex-direction: column; text-align: center; gap: 16px; padding-bottom: 22px; }
  .footer-contact{ justify-content: center; }
  .footer-bottom{ justify-content: center; text-align: center; }
}

/* ============ PAGE HEADER (interior pages) ============ */

.page-header{
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(70px, 11vw, 120px) clamp(20px, 5vw, 64px) clamp(46px, 7vw, 70px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-header .section-eyebrow{
  display: inline-block;
}

.page-header h1{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 1.1;
  margin-bottom: 22px;
}

.page-header .hero-sub{
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink);
}

/* ============ CONTACT FORM ============ */

.contact-form{
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form .form-field{
  position: relative;
}

.contact-form label{
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15.5px;
  color: var(--navy);
  transition: border-color 0.35s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(58,50,38,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea{
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form button[type="submit"]{
  align-self: center;
  margin-top: 10px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.contact-form-note{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink);
  opacity: 0.65;
  text-align: center;
}

.contact-form select{
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15.5px;
  color: var(--navy);
  transition: border-color 0.35s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  border-radius: 0;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 12px) center, calc(100% - 6px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form select:focus{
  outline: none;
  box-shadow: none;
  border-color: var(--gold);
}

.contact-form select:focus-visible{
  outline: none;
}

/* ============ BOOKING PAGE — PREMIUM LAYOUT ============ */

.booking-section{
  background: var(--navy);
  color: var(--cream-dim);
  max-width: none;
  padding: clamp(60px, 9vw, 100px) clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
}

.booking-intro{
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(0px, 4vw, 40px);
}

.booking-intro-inner{
  position: relative;
  z-index: 1;
  max-width: 380px;
}

.booking-watermark{
  position: absolute;
  top: -20px;
  left: -40px;
  width: 260px;
  opacity: 0.08;
  pointer-events: none;
}

.booking-watermark .badge-ring,
.booking-watermark .badge-laurel,
.booking-watermark .badge-tools{
  stroke: var(--gold-light);
}

.booking-intro .section-eyebrow{ color: var(--gold-light); }

.booking-intro h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 38px);
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 22px;
}

.booking-intro p{
  font-size: 15px;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 32px;
}

.booking-points{
  list-style: none;
  border-top: 1px solid rgba(212,184,118,0.25);
  padding-top: 22px;
}

.booking-points li{
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  padding: 9px 0;
  border-bottom: 1px solid rgba(212,184,118,0.15);
  display: flex;
  gap: 10px;
}

.booking-points li:first-child{ padding-top: 0; }

.booking-points li::before{
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.booking-form-card{
  position: relative;
  background: var(--cream);
  padding: clamp(36px, 5vw, 56px);
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid rgba(212,184,118,0.3);
}

.booking-form-card::before,
.booking-form-card::after{
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.booking-form-card::before{ top: -1px; left: -1px; border-right: none; border-bottom: none; }
.booking-form-card::after{ bottom: -1px; right: -1px; border-left: none; border-top: none; }

.booking-form-card .contact-form{ max-width: none; }

.booking-form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}

.booking-form-card button[type="submit"]{
  align-self: flex-start;
  margin-top: 6px;
}

.booking-form-card .contact-form-note{
  text-align: left;
  margin-top: 4px;
}

@media (max-width: 900px){
  .booking-section{ grid-template-columns: 1fr; }
  .booking-watermark{ display: none; }
  .booking-form-row{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .contact-form{ max-width: 100%; }
}
