:root {
  --bg: #f5f1e7;
  --bg-deep: #ebe5d8;
  --card: rgba(255,255,255,.58);
  --card-strong: rgba(255,255,255,.76);
  --line: rgba(53, 78, 54, .12);
  --text: #223629;
  --muted: #5d7263;
  --green: #4f8360;
  --green-deep: #355d43;
  --sage: #dce4da;
  --moss: #98b295;
  --accent: #c5b28e;
  --shadow: 0 24px 60px rgba(69, 88, 64, .12);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(184, 203, 174, .42), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(214, 202, 173, .46), transparent 24%),
    linear-gradient(180deg, #f7f3ea 0%, var(--bg) 44%, #efe9dd 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: .3;
  background-image:
    linear-gradient(rgba(53, 78, 54, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 78, 54, .025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 95%);
}
.leaf {
  position: fixed; width: 120px; height: 120px; border-radius: 60% 0 60% 0;
  background: radial-gradient(circle at 30% 30%, rgba(143, 177, 132, .28), rgba(79, 131, 96, .08));
  filter: blur(2px);
  pointer-events: none; z-index: -1;
}
.leaf-a { left: -32px; top: 18%; transform: rotate(28deg); animation: drift 16s ease-in-out infinite; }
.leaf-b { right: -28px; top: 52%; transform: rotate(-18deg); animation: drift 18s ease-in-out infinite reverse; }
.leaf-c { left: 12%; bottom: -34px; transform: rotate(76deg); animation: drift 22s ease-in-out infinite; }

.wrapper {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 14px 18px;
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(66, 87, 61, .08);
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo {
  width: 54px; height: 54px; border-radius: 18px; overflow: hidden; flex: none;
  background: linear-gradient(180deg, #f9f7f1, #ebf0e7);
  box-shadow: inset 0 0 0 1px rgba(53,78,54,.08);
}
.brand-copy strong {
  display: block;
  font-size: .98rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-copy small { color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 10px; }
.site-nav a {
  padding: 12px 16px; border-radius: 999px; color: var(--muted); font-weight: 700;
}
.site-nav a:hover { background: rgba(53,78,54,.06); color: var(--text); }
.site-nav .play-link {
  background: var(--green-deep); color: #f8f5ef;
}
.menu-toggle {
  display: none;
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font: inherit;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 72px 0 32px;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 800;
  color: #728576;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero h1 { font-size: clamp(3.15rem, 6vw, 5.85rem); line-height: .96; max-width: 10.5ch; }
.lead, .section-copy p, .section-head p:last-child, .showcase-text p, .story-card p, .service-card p, .contact-card p, .gallery-copy p, .metrics-copy p, .ribbon-copy p, .site-footer p, .policy-hero p, .policy-section p, .policy-section li {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.03rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .28s ease, box-shadow .28s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(66,87,61,.12); }
.button.primary { background: var(--green-deep); color: #f7f3ec; }
.button.secondary { background: rgba(53,78,54,.08); color: var(--green-deep); }
.hero-points {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-points span {
  padding: 11px 14px; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow); color: var(--green-deep); font-weight: 700;
}
.hero-visual { position: relative; min-height: 620px; }
.hero-panel, .hero-card, .phone-frame, .showcase-art, .story-card, .metrics-card, .gallery-card, .service-card, .contact-card, .ribbon-panel, .policy-hero, .policy-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-banner {
  position: absolute; inset: 0 0 60px 0; border-radius: var(--radius-xl); overflow: hidden;
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; width: min(260px, 70%); padding: 22px; border-radius: 24px;
}
.intro-card { left: -10px; bottom: 24px; }
.office-card { right: -10px; top: 18px; }
.mini-label {
  display: inline-block; margin-bottom: 10px; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: #6b806f; font-weight: 800;
}
.hero-card strong { display: block; font-size: 1.15rem; margin-bottom: 8px; }
.hero-card p { margin: 0; color: var(--muted); line-height: 1.6; }

.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.34);
}
.marquee-track {
  display: flex; gap: 28px; padding: 18px 0; white-space: nowrap; animation: marquee 28s linear infinite;
  font-weight: 800; color: #607061; text-transform: uppercase; letter-spacing: .12em;
}
.marquee-track span::before {
  content: '•'; display: inline-block; margin-right: 28px; color: var(--green);
}

.section { padding: 70px 0 12px; }
.section h2, .section-head h2, .gallery-copy h3, .policy-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: .98;
}
.section-copy, .showcase-text, .section-head { max-width: 760px; }
.feature-list {
  margin: 18px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.8;
}

.split-product {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: center;
}
.product-stack {
  position: relative; min-height: 720px;
}
.phone-frame {
  width: min(380px, 90%); padding: 16px; border-radius: 36px; position: absolute; right: 34px; top: 0;
}
.phone-frame img, .showcase-art img, .gallery-image img { border-radius: 26px; width: 100%; }
.tilt-left { transform: rotate(6deg); }
.info-badge {
  position: absolute; max-width: 250px; padding: 20px; border-radius: 24px; background: rgba(244, 247, 240, .86); border: 1px solid rgba(255,255,255,.84); box-shadow: var(--shadow);
}
.info-badge strong { display: block; margin-bottom: 6px; font-size: 1.24rem; }
.info-badge span { color: var(--muted); line-height: 1.6; }
.badge-top { left: 0; top: 64px; }
.badge-bottom { left: 40px; bottom: 64px; }

.showcase-grid {
  display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 18px; align-items: stretch;
}
.showcase-art, .story-card, .service-card, .contact-card, .gallery-card, .ribbon-panel { border-radius: var(--radius-lg); overflow: hidden; }
.showcase-text { padding: 22px 0; }
.showcase-art img { width: 100%; height: 100%; object-fit: cover; }

.story-grid, .services-grid, .contact-grid {
  display: grid; gap: 18px;
}
.story-grid { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.story-card { padding: 28px; }
.story-card span {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--sage); color: var(--green-deep); font-weight: 800; margin-bottom: 16px;
}
.story-card h3, .service-card h3, .contact-card h3, .gallery-copy h3 { font-size: 2rem; margin-bottom: 10px; }

.metrics-block { padding-top: 84px; }
.metrics-card {
  border-radius: 34px; padding: 32px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: center;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.metric-item {
  padding: 24px 20px; border-radius: 24px; background: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.8); text-align: center;
}
.metric-item strong {
  display: block; font-size: clamp(2.6rem, 4vw, 4rem); line-height: 1; color: var(--green-deep); font-family: "Cormorant Garamond", serif;
}
.metric-item span { display: block; margin-top: 10px; color: var(--muted); line-height: 1.5; }

.dual-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.gallery-card {
  padding: 22px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: center;
}
.gallery-card.alt-card { background: rgba(242, 246, 240, .7); }
.gallery-image.tall { align-self: stretch; }
.gallery-image img { height: 100%; object-fit: cover; }

.services-grid { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.service-card { padding: 28px; }

.ribbon-panel {
  padding: 30px; display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.ribbon-copy { max-width: 780px; }

.contact-grid { grid-template-columns: repeat(4, 1fr); margin-top: 22px; }
.contact-card { padding: 28px; }
.contact-card a { color: var(--green-deep); font-weight: 800; }

.site-footer {
  padding: 42px 0 30px; margin-top: 18px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 18px;
}
.site-footer strong { display: block; margin-bottom: 8px; font-size: 1.02rem; }
.footer-end { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--muted); }
.footer-end a { color: var(--green-deep); font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* privacy page */
.policy-shell {
  width: min(calc(100% - 32px), 980px);
  margin: 24px auto 70px;
}
.policy-topbar {
  padding: 14px 18px; border-radius: 999px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(255,255,255,.56); border: 1px solid rgba(255,255,255,.76); box-shadow: var(--shadow); backdrop-filter: blur(12px);
}
.policy-topbar strong { font-size: 1rem; }
.policy-topbar span, .policy-note { color: var(--muted); }
.policy-topbar a { color: var(--green-deep); font-weight: 800; }
.policy-hero, .policy-card { border-radius: 32px; padding: 34px; margin-top: 18px; }
.policy-section + .policy-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.policy-section h2 { margin: 0 0 10px; font-size: 2rem; }
.policy-section ul { margin: 12px 0 0 18px; }
.policy-note { margin-top: 24px; padding: 16px 18px; background: rgba(79,131,96,.08); border-radius: 18px; font-weight: 700; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-20px) rotate(24deg); }
}

@media (max-width: 1120px) {
  .hero,
  .split-product,
  .metrics-card,
  .dual-gallery,
  .showcase-grid { grid-template-columns: 1fr; }
  .story-grid,
  .services-grid,
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-text { padding-bottom: 0; }
  .gallery-card { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-header { border-radius: 30px; flex-wrap: wrap; align-items: flex-start; }
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-top: 8px; }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero { padding-top: 42px; }
  .hero-visual { min-height: 520px; }
  .hero-banner { inset: 0 0 120px 0; }
  .hero-card { position: absolute; width: 220px; }
  .product-stack { min-height: 560px; }
  .phone-frame { position: relative; right: auto; margin-left: auto; }
  .badge-top { left: 0; top: 34px; }
  .badge-bottom { left: 20px; bottom: 24px; }
  .story-grid,
  .services-grid,
  .contact-grid,
  .metrics-grid { grid-template-columns: 1fr; }
  .ribbon-panel,
  .site-footer { flex-direction: column; align-items: flex-start; }
  .policy-topbar { border-radius: 26px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .wrapper, .site-header, .policy-shell { width: min(calc(100% - 20px), var(--max)); }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { font-size: .76rem; }
  .hero-visual { min-height: 430px; }
  .hero-banner { inset: 0 0 130px 0; }
  .hero-card { width: 190px; padding: 16px; }
  .section { padding-top: 54px; }
  .phone-frame { width: 88%; padding: 12px; border-radius: 28px; }
  .phone-frame img, .gallery-image img { border-radius: 18px; }
  .info-badge { max-width: 180px; padding: 16px; }
  .showcase-grid { gap: 14px; }
  .showcase-art, .story-card, .service-card, .contact-card, .gallery-card, .ribbon-panel { border-radius: 22px; }
  .metrics-card, .policy-hero, .policy-card { padding: 24px; border-radius: 24px; }
  .policy-section h2 { font-size: 1.65rem; }
}
