@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #17332d;
  --forest: #214d43;
  --forest-deep: #153b33;
  --sage: #dce8df;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --clay: #c86e4b;
  --line: rgba(23, 51, 45, .14);
  --muted: #5f706b;
  --shadow: 0 24px 70px rgba(32, 57, 49, .13);
  font-family: Geist, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-size: 17px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; padding: 0 clamp(24px, 5vw, 78px); border-bottom: 1px solid var(--line); background: rgba(255,253,248,.94); position: relative; z-index: 20; }
.wordmark { font: 800 clamp(20px, 2vw, 27px)/1 Manrope, sans-serif; letter-spacing: -.06em; white-space: nowrap; }
.wordmark span { color: var(--clay); }
.site-header nav { display: flex; justify-content: center; gap: clamp(18px, 2.5vw, 38px); font-size: 15px; font-weight: 600; }
.site-header nav a { padding: 29px 0 25px; border-bottom: 3px solid transparent; }
.site-header nav a:hover, .site-header nav a[aria-current="page"] { color: var(--forest); border-color: var(--clay); }
.header-actions { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 600; }
.language { color: var(--muted); }
.text-link { text-decoration: underline; text-underline-offset: 4px; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px; background: var(--ink); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 23px; background: var(--forest); color: white; font-weight: 700; border: 1px solid var(--forest); transition: transform .18s, background .18s; }
.button:hover { background: var(--forest-deep); transform: translateY(-1px); }
.button.small { min-height: 42px; padding: 9px 18px; font-size: 14px; }
.button.light { color: var(--forest); background: var(--paper); border-color: var(--paper); }
.quiet-link { display: inline-flex; align-items: center; font-weight: 700; color: var(--forest); text-decoration: underline; text-underline-offset: 5px; }
.quiet-link.centered { justify-content: center; width: 100%; margin-top: 30px; }

h1, h2, h3 { font-family: Manrope, sans-serif; line-height: 1.08; letter-spacing: -.04em; margin: 0; }
h1 { font-size: clamp(45px, 6.6vw, 92px); }
h2 { font-size: clamp(34px, 4vw, 57px); }
h3 { font-size: 22px; }
p { margin: 0; }
.eyebrow { margin-bottom: 18px; color: var(--clay); font-size: 13px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.lead { max-width: 670px; margin-top: 24px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.micro { color: var(--muted); font-size: 14px; }

.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr); min-height: calc(100vh - 82px); background: var(--cream); overflow: hidden; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(68px, 9vw, 140px) clamp(28px, 7vw, 110px); position: relative; z-index: 2; }
.hero-copy { grid-column: 1; grid-row: 1; }
.hero-copy h1 { max-width: 770px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 38px; }
.hero-image { min-height: 620px; position: relative; overflow: hidden; }
.hero-image { grid-column: 2; grid-row: 1; }
.hero-image img { height: 100%; object-fit: cover; object-position: 65% center; }
.hero-image::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--cream), transparent 20%); }

.benefits, .modules, .product-section, .story-body, .trial-layout, .faq { padding: clamp(80px, 9vw, 140px) clamp(24px, 7vw, 112px); }
.benefits { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 150px); background: var(--forest); color: white; }
.benefits .eyebrow { color: #f0a488; }
.benefit-list { display: grid; gap: 0; }
.benefit-list article { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.2); display: grid; grid-template-columns: 36px 1fr; gap: 15px; }
.benefit-list article > strong { grid-row: 1 / 3; color: #f0a488; font: 700 13px Manrope, sans-serif; }
.benefit-list article > p { grid-column: 2; }
.benefit-list p { color: rgba(255,255,255,.72); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading p { margin-top: 20px; color: var(--muted); font-size: 19px; }
.module-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.module-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 46px; border-radius: 13px; background: var(--sage); color: var(--forest); font-weight: 800; }
.module-card p { margin-top: 14px; color: var(--muted); font-size: 15px; }
.module-grid.detailed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.module-grid.detailed .module-card { min-height: 240px; }

.product-section { background: var(--cream); }
.product-section.split { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(520px, 1.3fr); gap: clamp(45px, 7vw, 100px); align-items: center; }
.product-section.split > div:first-child p:not(.eyebrow) { margin-top: 22px; color: var(--muted); }
.product-top { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 35px; }
.product-actions { display: flex; gap: 8px; }
.product-actions span { padding: 8px 13px; border-radius: 9px; border: 1px solid var(--line); background: white; font-size: 13px; }
.product-window { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.days { display: grid; grid-template-columns: 150px repeat(7, 1fr); background: #faf9f5; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; text-align: center; }
.days span { padding: 13px 7px; border-left: 1px solid var(--line); }
.matrix { position: relative; }
.room { height: 72px; padding: 24px 18px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.booking { position: absolute; height: 50px; display: flex; align-items: center; padding: 0 16px; border-radius: 12px; color: white; background: #356b7c; box-shadow: 0 3px 9px rgba(29,65,76,.2); white-space: nowrap; overflow: hidden; }
.booking.one { left: calc(150px + (100% - 150px) / 7 * .25); top: 11px; width: calc((100% - 150px) / 7 * 2.7); }
.booking.two { left: calc(150px + (100% - 150px) / 7 * 3.2); top: 83px; width: calc((100% - 150px) / 7 * 2.5); background: #79644f; }
.booking.three { left: calc(150px + (100% - 150px) / 7 * 1.1); top: 155px; width: calc((100% - 150px) / 7 * 4.5); background: #5d7c62; }

.story-strip { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--sage); }
.story-strip > div:only-child { grid-column: 1 / -1; padding: clamp(70px, 9vw, 135px) clamp(24px, 10vw, 165px); }
.story-strip > div:only-child p:not(.eyebrow) { max-width: 760px; margin: 24px 0; color: var(--muted); font-size: 19px; }
.story-image { min-height: 500px; background: url('/assets/hospitality-hero.png') center/cover; }
.story-strip .prose { padding: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.prose p { margin-top: 22px; max-width: 650px; color: var(--muted); font-size: 18px; }
.final-cta { padding: clamp(80px, 10vw, 150px) 24px; text-align: center; background: var(--forest); color: white; }
.final-cta p { max-width: 630px; margin: 22px auto 34px; color: rgba(255,255,255,.75); font-size: 19px; }

.page-hero { padding: clamp(80px, 10vw, 150px) clamp(24px, 9vw, 145px); background: var(--cream); }
.page-hero h1 { max-width: 1000px; font-size: clamp(46px, 6vw, 83px); }
.page-hero.story { background: var(--sage); }
.story-body { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.story-body blockquote { margin: 35px 0 0; padding-left: 24px; border-left: 3px solid var(--clay); font: 600 22px/1.5 Manrope, sans-serif; }
.feature-overview, .plain-band { padding: clamp(70px, 8vw, 120px) clamp(24px, 9vw, 145px); }
.plain-band { background: var(--forest); color: white; }
.plain-band p { max-width: 740px; margin-top: 25px; color: rgba(255,255,255,.74); font-size: 20px; }
.plain-band .three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 35px; }
.plain-band .three p { margin: 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.25); font-size: 16px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: clamp(70px, 8vw, 120px) clamp(24px, 9vw, 145px); }
.values article { padding: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; }
.values p { font-size: 15px; }

.trial-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(400px, 1fr); gap: clamp(55px, 9vw, 130px); align-items: start; }
.trial-card { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); background: white; }
.module-options { display: grid; gap: 10px; margin: 30px 0; }
.module-options label { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 15px; border: 1px solid var(--line); border-radius: 13px; cursor: pointer; }
.module-options input { width: 19px; height: 19px; accent-color: var(--forest); }
.module-options small { color: var(--clay); }
.annie-disclosure { padding: 14px; margin-bottom: 20px; border-radius: 12px; background: var(--cream); color: var(--muted); font-size: 14px; }
.trial-card .button { width: 100%; }
.price-note { margin-top: 20px; color: var(--muted); font-size: 14px; }
.faq { background: var(--cream); }
.faq article { max-width: 800px; padding: 24px 0; border-top: 1px solid var(--line); }
.faq p { margin-top: 10px; color: var(--muted); }
.faq details { max-width: 850px; padding: 22px 0; border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; font: 700 18px Manrope, sans-serif; }

footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 40px clamp(24px, 7vw, 112px); background: #102c26; color: rgba(255,255,255,.72); }
.footer-links { display: flex; gap: 25px; font-size: 14px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 18px; }
  .menu-button { display: block; }
  .site-header nav { display: none; position: absolute; left: 24px; right: 24px; top: 74px; padding: 15px 22px; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  .site-header nav[data-open] { display: flex; }
  .site-header nav a { padding: 12px 0; border: 0; }
  .header-actions { justify-self: end; }
  .hero { grid-template-columns: 1fr 43%; }
  .module-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { min-height: 70px; padding: 0 18px; }
  .header-actions .button, .header-actions .language { display: none; }
  .hero { display: flex; min-height: auto; flex-direction: column; }
  .hero-copy { padding: 66px 22px 55px; }
  .hero-image { min-height: 360px; }
  .hero-image::before { background: linear-gradient(180deg, var(--cream), transparent 20%); }
  .benefits, .story-strip, .trial-layout, .story-body, .product-section.split { grid-template-columns: 1fr; }
  .module-grid, .module-grid.detailed, .values, .plain-band .three { grid-template-columns: 1fr; }
  .module-card { min-height: auto; }
  .feature-icon { margin-bottom: 25px; }
  .product-top { align-items: start; flex-direction: column; }
  .product-window { overflow-x: auto; }
  .days, .matrix { min-width: 720px; }
  .story-strip .prose { padding: 60px 24px; }
  .story-image { min-height: 380px; }
  .trial-layout { gap: 45px; }
  footer { align-items: start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
