/* Wildsorrel Flowers — sample site by Lampwright.
   Design language: botanical art-book. Forest green, warm cream, one coral bloom. */

@font-face { font-family: "DM Serif Display"; src: url(fonts/dm-serif-display-latin-400-normal.woff2) format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Serif Display"; src: url(fonts/dm-serif-display-latin-400-italic.woff2) format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Figtree"; src: url(fonts/figtree-latin-wght-normal.woff2) format("woff2"); font-weight: 300 900; font-style: normal; font-display: swap; }

:root {
  --forest: #14281f;
  --forest-2: #0d1c15;
  --moss: #2c4a3a;
  --sage: #8fae8a;
  --cream: #f4ede0;
  --paper: #ebe2d0;
  --paper-2: #e3d8c2;
  --ink: #1b2a22;
  --ink-soft: #4b5a50;
  --line: rgba(27, 42, 34, .14);
  --bloom: #e0623f;
  --bloom-deep: #c24c2c;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: clamp(16px, 4.5vw, 64px);
  --max: 1240px;
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--cream); color: var(--ink); font: 400 1rem/1.65 var(--sans); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ── sample banner ─────────────────────────────────────────────────────── */
.sample-banner { position: relative; z-index: 30; background: var(--forest-2); color: #d9e3d6; font: 500 .8125rem/1.45 var(--sans); padding: 9px var(--gutter); text-align: center; }
.sample-banner strong { color: var(--bloom); font-weight: 800; letter-spacing: .09em; text-transform: uppercase; font-size: .72rem; margin-right: 5px; }

/* ── type helpers ──────────────────────────────────────────────────────── */
.eyebrow { font: 600 .75rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--bloom-deep); margin-bottom: 22px; }
.eyebrow-light { color: #f0a58c; }
.display { font-family: var(--serif); font-size: clamp(2.3rem, 5.2vw, 4.4rem); line-height: 1.02; letter-spacing: -.01em; color: var(--forest); text-wrap: balance; }
.display em { font-style: italic; color: var(--bloom-deep); }
.display-light { color: var(--cream); }
.display-light em { color: #f39b7e; }
.display-sm { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.body-lg { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.7; color: var(--ink-soft); max-width: 36em; }
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-note { margin-top: 20px; color: var(--ink-soft); max-width: 34em; }

/* ── buttons ───────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; border-radius: 999px; font: 600 1rem/1 var(--sans); text-decoration: none; transition: transform .35s var(--ease), background .35s, color .35s, box-shadow .35s; }
.btn-bloom { background: var(--bloom); color: #fff; box-shadow: 0 12px 30px -12px rgba(224, 98, 63, .8); }
.btn-bloom:hover { background: var(--bloom-deep); transform: translateY(-2px); }
.btn-ghost { color: var(--cream); border: 1px solid rgba(244, 237, 224, .45); }
.btn-ghost:hover { background: rgba(244, 237, 224, .12); border-color: var(--cream); }

/* ── masthead (over the hero) ──────────────────────────────────────────── */
.mast { position: absolute; left: 0; right: 0; z-index: 20; }
.mast-row { max-width: 1440px; margin: 0 auto; padding: 22px var(--gutter); display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cream); }
.brand-mark { width: 38px; height: 38px; color: var(--bloom); flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name em { font: italic 400 1.7rem/1 var(--serif); }
.brand-name small { font: 600 .62rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; opacity: .75; margin-top: 6px; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { color: rgba(244, 237, 224, .82); text-decoration: none; font-size: .92rem; font-weight: 500; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--bloom); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.nav a:hover { color: var(--cream); }
.nav a:hover::after { transform: scaleX(1); }
.pill { flex: none; padding: 11px 20px; border-radius: 999px; background: var(--cream); color: var(--forest); font-weight: 700; font-size: .9rem; text-decoration: none; transition: background .3s, color .3s; }
.pill:hover { background: var(--bloom); color: #fff; }

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: min(100svh, 980px); min-height: max(680px, min(100svh, 980px)); display: flex; align-items: flex-end; overflow: hidden; background: var(--forest-2); color: var(--cream); isolation: isolate; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%; z-index: -2; transform-origin: 62% 45%; animation: breathe 26s ease-in-out infinite alternate; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(90deg, rgba(13, 28, 21, .94) 0%, rgba(13, 28, 21, .72) 34%, rgba(13, 28, 21, .12) 68%, rgba(13, 28, 21, .25) 100%),
  linear-gradient(0deg, rgba(13, 28, 21, .85) 0%, rgba(13, 28, 21, 0) 42%),
  linear-gradient(180deg, rgba(13, 28, 21, .6) 0%, rgba(13, 28, 21, 0) 22%); }
.hero-inner { width: 100%; max-width: 1440px; margin: 0 auto; padding: 150px var(--gutter) clamp(72px, 10vh, 120px); }
.kicker { display: flex; align-items: center; gap: 14px; font: 600 .78rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: #f0a58c; margin-bottom: 28px; }
.kicker .rule { width: 46px; height: 1px; background: currentColor; }
.hero-title { font-family: var(--serif); font-size: clamp(3.1rem, 8.6vw, 8.6rem); line-height: .93; letter-spacing: -.02em; }
.hero-title .ln { display: block; animation: rise 1.2s var(--ease) both; }
.hero-title .ln:nth-child(2) { animation-delay: .12s; }
.hero-title .ln:nth-child(3) { animation-delay: .24s; }
.hero-title em { font-style: italic; color: #f39b7e; }
.hero-lead { margin-top: 30px; max-width: 30em; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: rgba(244, 237, 224, .86); animation: rise .9s .2s var(--ease) both; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; animation: rise .9s .28s var(--ease) both; }
.plate-cap { position: absolute; right: var(--gutter); bottom: 40px; font: italic 400 1rem/1.3 var(--serif); color: rgba(244, 237, 224, .8); text-align: right; }
.plate-cap span { display: block; font: 600 .66rem/1 var(--sans); font-style: normal; letter-spacing: .24em; text-transform: uppercase; color: #f0a58c; margin-bottom: 6px; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; width: 22px; height: 36px; margin-left: -11px; border: 1px solid rgba(244, 237, 224, .5); border-radius: 12px; }
.scroll-cue span { position: absolute; left: 50%; top: 7px; width: 2px; height: 7px; margin-left: -1px; border-radius: 2px; background: var(--cream); animation: cue 2.2s ease-in-out infinite; }

/* ── the room ──────────────────────────────────────────────────────────── */
.room { position: relative; padding: clamp(96px, 12vw, 170px) 0; overflow: hidden; }
.orn { position: absolute; pointer-events: none; }
.orn-fern-a { width: 220px; height: 480px; right: -30px; top: 40px; color: var(--sage); opacity: .38; transform: rotate(-18deg); animation: sway 9s ease-in-out infinite alternate; }
.room-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(48px, 7vw, 110px); align-items: start; position: relative; }
.room-lede .display { margin-bottom: 30px; }
.sign { margin-top: 28px; font: italic 1.3rem/1 var(--serif); color: var(--moss); }
.makes { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.makes li { display: grid; grid-template-columns: 54px 1fr; gap: 10px; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding .4s var(--ease); }
.makes li:hover { padding-left: 10px; }
.makes .num { font: italic 1.5rem/1.2 var(--serif); color: var(--bloom); }
.makes h3 { font: 400 1.55rem/1.15 var(--serif); color: var(--forest); margin-bottom: 6px; }
.makes p { color: var(--ink-soft); }

/* ── arrangements ──────────────────────────────────────────────────────── */
.arr { background: var(--paper); padding: clamp(96px, 12vw, 160px) 0; }
.arr-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 26px; align-items: end; }
.card { position: relative; border-radius: 6px; overflow: hidden; background: var(--forest); color: var(--cream); box-shadow: 0 30px 60px -34px rgba(20, 40, 31, .7); }
.card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1.2s var(--ease); }
.card:hover img { transform: scale(1.05); }
.card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13, 28, 21, .92) 0%, rgba(13, 28, 21, .35) 45%, rgba(13, 28, 21, 0) 70%); }
.card-tall { aspect-ratio: 3 / 4.3; }
.card-mid { aspect-ratio: 3 / 3.8; }
.card-dark { aspect-ratio: 3 / 4.1; }
.card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px; }
.card-no { font: 600 .7rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: #f0a58c; margin-bottom: 10px; }
.card h3 { font: italic 400 clamp(1.8rem, 2.6vw, 2.3rem)/1 var(--serif); margin-bottom: 10px; }
.card p { color: rgba(244, 237, 224, .82); font-size: .96rem; max-width: 26em; }
.card .price { margin-top: 16px; display: inline-block; font: 400 1.6rem/1 var(--serif); color: #fff; padding: 10px 16px 8px; border: 1px solid rgba(244, 237, 224, .35); border-radius: 4px; background: rgba(13, 28, 21, .4); backdrop-filter: blur(6px); }
.card .price span { font-size: 1.05rem; opacity: .7; }

.list-and-card { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(40px, 6vw, 90px); margin-top: clamp(64px, 8vw, 110px); align-items: center; }
.pl-title { font: italic 400 2rem/1 var(--serif); color: var(--forest); margin-bottom: 20px; }
.price-list ul { list-style: none; margin: 0; padding: 0; }
.price-list li { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; font-size: 1.06rem; }
.price-list li span { flex: 0 1 auto; }
.price-list li i { flex: 1; border-bottom: 1px dotted rgba(27, 42, 34, .35); transform: translateY(-4px); min-width: 16px; }
.price-list li b { flex: none; font: 400 1.25rem/1 var(--serif); color: var(--forest); }
.pl-foot { margin-top: 20px; color: var(--ink-soft); font-size: .95rem; }
.pl-foot a { color: var(--bloom-deep); text-underline-offset: 3px; }

.order-card { position: relative; background: #fbf8f2; border-radius: 18px; padding: 26px; box-shadow: 16px 18px 0 0 var(--forest), 0 50px 90px -40px rgba(20, 40, 31, .6), 0 0 0 1px rgba(27, 42, 34, .06); transform: rotate(1.6deg); transition: transform .6s var(--ease); max-width: 430px; justify-self: center; width: 100%; }
.order-card:hover { transform: rotate(0deg) translateY(-4px); }
.oc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.oc-label { font: italic 1.5rem/1 var(--serif); color: var(--forest); }
.oc-step { font-size: .75rem; font-weight: 600; color: var(--ink-soft); background: var(--paper); padding: 6px 10px; border-radius: 99px; }
.oc-item { display: flex; gap: 14px; align-items: center; padding: 12px; background: var(--paper); border-radius: 12px; margin-bottom: 20px; }
.oc-item img { width: 62px; height: 62px; object-fit: cover; border-radius: 8px; }
.oc-name { font: 400 1.2rem/1.1 var(--serif); color: var(--forest); }
.oc-size { font-size: .88rem; color: var(--ink-soft); }
.oc-field { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.sw { display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; padding: 7px 12px 7px 8px; border-radius: 99px; border: 1px solid var(--line); }
.sw i { width: 16px; height: 16px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.sw.on { border-color: var(--bloom); background: rgba(224, 98, 63, .08); font-weight: 600; }
.oc-msg { font: italic 1.12rem/1.4 var(--serif); color: var(--ink); padding: 12px 14px; border: 1px dashed rgba(27, 42, 34, .25); border-radius: 10px; margin-bottom: 18px; }
.oc-rows p { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
.oc-rows span { color: var(--ink-soft); }
.oc-rows .oc-total { border-bottom: 0; font-size: 1.05rem; padding-top: 12px; }
.oc-rows .oc-total b { font: 400 1.5rem/1 var(--serif); color: var(--forest); }
.oc-btn { margin-top: 16px; text-align: center; background: var(--forest); color: var(--cream); border-radius: 12px; padding: 14px; font-weight: 600; }

/* ── plates strip ──────────────────────────────────────────────────────── */
.plates { background: var(--forest); color: var(--cream); padding: clamp(90px, 11vw, 150px) 0 clamp(80px, 9vw, 120px); overflow: hidden; }
.plates-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }
.plates-hint { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(244, 237, 224, .6); white-space: nowrap; }
.plates-hint span { display: inline-block; animation: nudge 2s ease-in-out infinite; }
.strip { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); padding: 0 max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) 26px; scrollbar-width: thin; scrollbar-color: var(--bloom) rgba(244, 237, 224, .1); }
.strip:focus-visible { outline: 2px solid var(--bloom); outline-offset: 6px; }
.plate { flex: none; margin: 0; width: clamp(250px, 26vw, 360px); scroll-snap-align: start; }
.plate-wide { width: clamp(290px, 36vw, 500px); }
.plate img { width: 100%; height: clamp(360px, 44vw, 560px); object-fit: cover; border-radius: 4px; filter: saturate(.95); transition: filter .6s, transform .8s var(--ease); }
.plate:hover img { filter: saturate(1.1); transform: translateY(-6px); }
.plate figcaption { margin-top: 16px; font: italic 1.12rem/1.3 var(--serif); color: rgba(244, 237, 224, .88); }
.plate figcaption span { display: block; font: 600 .66rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: #f0a58c; margin-bottom: 7px; font-style: normal; }

/* ── seasons ───────────────────────────────────────────────────────────── */
.seasons { padding: clamp(96px, 12vw, 160px) 0; }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.season { position: relative; padding: 34px 28px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 340px; overflow: hidden; transition: background .5s; }
.season:hover { background: var(--paper); }
.s-orn { width: 64px; height: 110px; color: var(--sage); opacity: .8; margin-bottom: 18px; transition: transform .8s var(--ease); }
.season:hover .s-orn { transform: rotate(-8deg) translateY(-4px); }
.s-months { font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.season h3 { font: italic 400 2.2rem/1.1 var(--serif); color: var(--forest); margin: 6px 0 16px; }
.season ul { list-style: none; margin: 0; padding: 0; }
.season li { padding: 6px 0; border-bottom: 1px dotted rgba(27, 42, 34, .2); color: var(--ink-soft); }
.season-now { background: var(--forest); }
.season-now:hover { background: var(--moss); }
.season-now .s-orn { color: var(--bloom); }
.season-now .s-months, .season-now li { color: rgba(244, 237, 224, .78); border-color: rgba(244, 237, 224, .18); }
.season-now h3 { color: var(--cream); }
.now-tag { position: absolute; top: 20px; right: 20px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--bloom); color: #fff; padding: 6px 10px; border-radius: 99px; }

/* ── tables (weddings) ─────────────────────────────────────────────────── */
.tables { position: relative; overflow: hidden; background: var(--forest-2); padding: clamp(96px, 12vw, 170px) 0; isolation: isolate; }
.tables-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%; z-index: -2; }
.tables-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(270deg, rgba(13, 28, 21, .95) 0%, rgba(13, 28, 21, .8) 40%, rgba(13, 28, 21, .2) 80%); }
.tables-inner { display: flex; justify-content: flex-end; }
.tables-card { max-width: 560px; color: rgba(244, 237, 224, .86); }
.tables-card .display { margin-bottom: 22px; }
.t-steps { margin: 30px 0; padding: 0; list-style: none; counter-reset: t; }
.t-steps li { counter-increment: t; position: relative; padding: 0 0 18px 48px; }
.t-steps li::before { content: counter(t); position: absolute; left: 0; top: -2px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid #f39b7e; color: #f39b7e; display: grid; place-items: center; font: italic 1rem/1 var(--serif); }
.t-steps b { color: var(--cream); font-weight: 600; }
.t-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(244, 237, 224, .16); border: 1px solid rgba(244, 237, 224, .16); border-radius: 10px; overflow: hidden; margin-bottom: 34px; }
.t-prices p { background: rgba(13, 28, 21, .72); padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.t-prices span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(244, 237, 224, .65); }
.t-prices b { font: 400 1.35rem/1.1 var(--serif); color: var(--cream); }

/* ── order + area ──────────────────────────────────────────────────────── */
.order { position: relative; padding: clamp(96px, 12vw, 160px) 0; overflow: hidden; }
.orn-fern-b { width: 180px; height: 400px; left: -40px; bottom: 60px; color: var(--sage); opacity: .3; transform: rotate(16deg); animation: sway 11s ease-in-out infinite alternate-reverse; }
.steps { list-style: none; margin: 0 0 clamp(80px, 10vw, 130px); padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step { background: #fbf8f2; border-radius: 14px; padding: 34px 30px 36px; box-shadow: 0 1px 0 rgba(27, 42, 34, .06), 0 24px 50px -36px rgba(20, 40, 31, .45); transition: transform .5s var(--ease); }
.step:hover { transform: translateY(-6px); }
.step-n { display: block; font: italic 4.2rem/.9 var(--serif); color: var(--bloom); margin-bottom: 14px; }
.step h3 { font: 400 1.6rem/1.1 var(--serif); color: var(--forest); margin-bottom: 10px; }
.step p { color: var(--ink-soft); }
.area { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.area-text .display { margin-bottom: 20px; }
.area-text > p:not(.eyebrow) { color: var(--ink-soft); max-width: 32em; }
.zones { list-style: none; margin: 28px 0 0; padding: 0; }
.zones li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.zones b { display: block; font: 400 1.25rem/1.2 var(--serif); color: var(--forest); }
.zones span { color: var(--ink-soft); font-size: .95rem; }
.z { flex: none; width: 18px; height: 18px; border-radius: 50%; margin-top: 4px; }
.z-a { background: rgba(224, 98, 63, .35); border: 2px solid var(--bloom); }
.z-b { background: rgba(20, 40, 31, .1); border: 2px dashed var(--forest); }
.z-c { border: 2px dotted var(--ink-soft); }
.map { margin: 0; }
.map svg { width: 100%; height: auto; display: block; border-radius: 18px; box-shadow: 0 30px 60px -40px rgba(20, 40, 31, .6); }
.map figcaption { margin-top: 10px; font: italic .95rem/1 var(--serif); color: var(--ink-soft); text-align: right; }
.pulse { transform-box: fill-box; transform-origin: center; animation: pulse 3.2s ease-in-out infinite; }

/* ── visit ─────────────────────────────────────────────────────────────── */
.visit { background: var(--paper); padding: clamp(96px, 12vw, 160px) 0; }
.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.visit-photo { position: relative; }
.visit-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 200px 200px 6px 6px; }
.orn-bloom { width: 120px; height: 120px; right: -36px; bottom: -30px; color: var(--bloom); opacity: .9; animation: spin 40s linear infinite; }
.visit-text .display { margin-bottom: 22px; }
.hours { width: 100%; margin-top: 34px; border-collapse: collapse; }
.hours caption { text-align: left; font: 600 .75rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--bloom-deep); padding-bottom: 14px; }
.hours th, .hours td { padding: 15px 0; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
.hours th { font: 400 1.2rem/1.3 var(--serif); color: var(--forest); padding-right: 20px; }
.hours td { text-align: right; color: var(--ink-soft); }

/* ── contact ───────────────────────────────────────────────────────────── */
.contact { position: relative; background: var(--forest); color: var(--cream); padding: clamp(110px, 13vw, 190px) 0; overflow: hidden; text-align: center; }
.orn-sprig { width: 150px; height: 380px; left: 2%; top: 30px; opacity: .7; color: var(--moss); animation: sway 8s ease-in-out infinite alternate; }
.orn-leaf { width: 90px; height: 180px; right: 8%; bottom: 50px; color: var(--bloom); opacity: .5; transform: rotate(28deg); }
.contact-inner { position: relative; }
.contact-title { font-family: var(--serif); font-size: clamp(2.8rem, 8vw, 7rem); line-height: .96; letter-spacing: -.02em; text-wrap: balance; }
.contact-title em { font-style: italic; color: #f39b7e; }
.contact-lead { margin: 28px auto 0; max-width: 34em; font-size: 1.1rem; color: rgba(244, 237, 224, .8); }
.contact-ways { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 46px; }
.way { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; text-decoration: none; padding: 22px 28px; border-radius: 14px; border: 1px solid rgba(244, 237, 224, .22); background: rgba(244, 237, 224, .04); min-width: 280px; transition: background .4s, border-color .4s, transform .4s var(--ease); }
.way:hover { background: var(--bloom); border-color: var(--bloom); transform: translateY(-3px); }
.way span { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.way b { font: 400 1.5rem/1.1 var(--serif); overflow-wrap: anywhere; }

/* ── footer ────────────────────────────────────────────────────────────── */
.foot { background: var(--forest-2); color: rgba(244, 237, 224, .7); padding: 64px 0 40px; font-size: .95rem; }
.foot-grid { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 36px; align-items: start; }
.foot-brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.foot-brand p { font: 400 1.5rem/1 var(--serif); }
.foot-brand em { font-style: italic; }
.foot a { color: rgba(244, 237, 224, .85); text-underline-offset: 3px; }
.foot a:hover { color: #f39b7e; }
.foot-nav { display: flex; flex-direction: column; gap: 8px; }
.foot-nav a { text-decoration: none; }
.foot-nav a[href="before.html"] { color: #f39b7e; text-decoration: underline; }
.foot-small { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(244, 237, 224, .12); font-size: .82rem; color: rgba(244, 237, 224, .5); }

/* ── motion ────────────────────────────────────────────────────────────── */
@keyframes breathe { from { transform: scale(1.02); } to { transform: scale(1.1) translateX(-1.5%); } }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0; } }
@keyframes sway { from { rotate: -3deg; } to { rotate: 4deg; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@keyframes pulse { 0%, 100% { transform: scale(.7); opacity: .35; } 50% { transform: scale(1.35); opacity: .1; } }
@keyframes appear { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

@supports (animation-timeline: view()) {
  .reveal { animation: appear linear both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
}

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

/* ── responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .nav a { font-size: .86rem; }
}
@media (max-width: 980px) {
  .mast-row { flex-wrap: wrap; row-gap: 14px; }
  .nav { order: 3; width: 100%; margin-left: 0; overflow-x: auto; gap: 20px; padding-bottom: 4px; scrollbar-width: none; }
  .nav a { white-space: nowrap; }
  .nav { -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent); mask-image: linear-gradient(90deg, #000 85%, transparent); }
  .pill { margin-left: auto; }
  .room-grid, .list-and-card, .area, .visit-grid { grid-template-columns: 1fr; }
  .arr-grid { grid-template-columns: 1fr 1fr; }
  .card-tall { grid-column: 1 / -1; aspect-ratio: 16 / 11; }
  .card-tall img { object-position: 50% 60%; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-nav { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .visit-photo { max-width: 520px; }
  .plate-cap { display: none; }
}
@media (max-width: 640px) {
  .mast-row { padding-top: 16px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-name em { font-size: 1.45rem; }
  .pill { padding: 10px 16px; font-size: .85rem; }
  .hero { min-height: 760px; }
  .hero-img { object-position: 58% 40%; }
  .hero-shade { background:
    linear-gradient(0deg, rgba(13, 28, 21, .95) 0%, rgba(13, 28, 21, .78) 40%, rgba(13, 28, 21, .05) 70%, rgba(13, 28, 21, .5) 100%); }
  .hero-inner { padding-top: 220px; padding-bottom: 88px; }
  .hero-title { font-size: clamp(2.9rem, 13.4vw, 4rem); }
  .btn { padding: 15px 22px; font-size: .95rem; }
  .arr-grid { grid-template-columns: 1fr; }
  .card-tall, .card-mid, .card-dark { aspect-ratio: 4 / 5; }
  .card-body { padding: 22px; }
  .order-card { transform: none; padding: 20px; }
  .order-card { box-shadow: 8px 10px 0 0 var(--forest), 0 0 0 1px rgba(27, 42, 34, .06); width: calc(100% - 8px); justify-self: start; }
  .plates-head { flex-direction: column; align-items: flex-start; }
  .plate, .plate-wide { width: 78vw; }
  .plate img { height: 108vw; }
  .season-grid { grid-template-columns: 1fr; }
  .season { min-height: 0; }
  .t-prices { grid-template-columns: 1fr; }
  .tables-shade { background: rgba(13, 28, 21, .84); }
  .hours td { text-align: left; }
  .hours th, .hours td { display: block; padding: 4px 0; border: 0; }
  .hours tr { display: block; padding: 12px 0; border-top: 1px solid var(--line); }
  .way { min-width: 0; width: 100%; }
  .foot-grid { grid-template-columns: 1fr; }
  .orn-fern-a { width: 140px; height: 300px; right: -50px; opacity: .25; }
  .orn-sprig { left: -30px; opacity: .6; }
  .orn-bloom { width: 86px; height: 86px; right: -8px; }
  .scroll-cue { display: none; }
  .kicker { font-size: .7rem; letter-spacing: .2em; gap: 10px; }
  .kicker .rule { width: 24px; }
  .price-list li { font-size: 1rem; }
  .way b { font-size: 1.22rem; }
  .orn-leaf { display: none; }
  .s-orn { width: 44px; height: 72px; margin-bottom: 10px; }
  .season { padding: 26px 22px 30px; }
}
