/* ===== Shared inner-page styles ===== */

/* page hero (compact banner) */
.page-hero { position: relative; overflow: hidden; background: var(--secondary); }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,47,40,.5), rgba(14,47,40,.82)); }
.page-hero-inner { position: relative; z-index: 2; padding-block: clamp(56px, 9vw, 116px); color: #fff; max-width: 720px; }
.page-hero .kicker { color: var(--accent); }
.page-hero .kicker::before { background: var(--accent); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 16px 0 16px; }
.page-hero p { color: #e4ece5; font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 56ch; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: #bcccc0; margin-bottom: 4px; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { opacity: .6; }

/* generic two-col prose */
.prose-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.prose-grid.flip .prose-media { order: 2; }
.prose-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.prose-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; }
.prose-body p + p { margin-top: 16px; }
.prose-body .h2 { margin: 14px 0 18px; }
@media (max-width: 860px) { .prose-grid { grid-template-columns: 1fr; } .prose-grid.flip .prose-media { order: -1; } .prose-media img { aspect-ratio: 16/10; } }

/* honest note row */
.disclaimer { background: var(--surface); border-block: 1px solid var(--border); }
.disclaimer .wrap-wide { display: flex; gap: 16px; align-items: center; padding-block: 18px; }
.disclaimer svg { width: 22px; height: 22px; color: var(--primary); flex: none; }
.disclaimer p { font-size: 14.5px; color: var(--muted); }
.disclaimer strong { color: var(--text); }

/* ===== Menu page ===== */
.menu-band + .menu-band { border-top: 1px solid var(--border); }
.menu-band { padding-block: clamp(40px, 6vw, 76px); }
.menu-band:nth-child(even) { background: var(--sage-pale); }
.menu-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.menu-band:nth-child(even) .menu-pic { order: 2; }
.menu-pic { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.menu-pic img { width: 100%; height: 100%; object-fit: cover; }
.menu-info .h2 { color: var(--secondary); margin: 12px 0 14px; }
.menu-info > p { color: var(--muted); font-size: 1.05rem; max-width: 50ch; }
.menu-examples { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.menu-examples li { display: flex; gap: 12px; align-items: baseline; padding-bottom: 12px; border-bottom: 1px dashed var(--border); }
.menu-examples li:last-child { border-bottom: 0; }
.menu-examples .me-name { font-family: var(--ff-display); font-weight: 600; font-size: 1.08rem; color: var(--text); }
.menu-examples .me-desc { color: var(--muted); font-size: 14.5px; }
.menu-tag { display: inline-block; margin-left: 8px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--secondary); background: var(--sage-soft); border: 1px solid var(--sage); padding: 2px 8px; border-radius: 999px; vertical-align: middle; }
@media (max-width: 760px) { .menu-row { grid-template-columns: 1fr; } .menu-band:nth-child(even) .menu-pic { order: -1; } }

/* spend strip */
.spend { background: var(--secondary); color: #fff; }
.spend .wrap-wide { display: flex; flex-wrap: wrap; gap: 20px 48px; align-items: center; justify-content: center; padding-block: 30px; text-align: center; }
.spend .s-item { display: flex; flex-direction: column; gap: 4px; }
.spend .s-k { font-family: var(--ff-display); font-size: 1.7rem; color: var(--accent); line-height: 1; }
.spend .s-v { font-size: 13.5px; color: #c6d3c9; letter-spacing: .03em; }
.spend .s-sep { width: 1px; height: 38px; background: rgba(255,255,255,.18); }
@media (max-width: 640px) { .spend .s-sep { display: none; } }

/* ===== Gallery page ===== */
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-masonry .gm { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; position: relative; display: block; }
.gallery-masonry .gm img { width: 100%; display: block; transition: transform .5s ease; }
.gallery-masonry .gm:hover img { transform: scale(1.05); }
.gallery-masonry .gm::after { content: ""; position: absolute; inset: 0; background: rgba(14,47,40,0); transition: background .3s ease; }
.gallery-masonry .gm:hover::after { background: rgba(14,47,40,.12); }
.gm-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 16px 14px; color: #fff; font-size: 13.5px; font-weight: 500; background: linear-gradient(to top, rgba(14,47,40,.8), transparent); opacity: 0; transition: opacity .3s ease; }
.gallery-masonry .gm:hover .gm-cap { opacity: 1; }
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 520px) { .gallery-masonry { columns: 1; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(14,30,26,.94); backdrop-filter: blur(6px); padding: 24px; }
.lightbox.open { display: flex; animation: fade .25s ease; }
.lb-img { max-width: min(94vw, 1180px); max-height: 80vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); transition: opacity .25s ease; object-fit: contain; }
.lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #e4ece5; font-size: 14.5px; padding-inline: 60px; }
.lb-count { position: absolute; top: 24px; left: 24px; color: #cdd8cf; font-size: 14px; font-variant-numeric: tabular-nums; }
.lb-btn { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: #fff; width: 50px; height: 50px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.lb-btn:hover { background: rgba(255,255,255,.2); transform: scale(1.06); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 640px) { .lb-prev { left: 12px; } .lb-next { right: 12px; } .lb-btn { width: 44px; height: 44px; } .lb-cap { padding-inline: 20px; bottom: 18px; } }

/* ===== About page ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.value-card .v-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--sage-soft); color: var(--secondary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value-card .v-ic svg { width: 24px; height: 24px; }
.value-card h3 { color: var(--secondary); margin-bottom: 8px; font-size: 1.25rem; }
.value-card p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .values-grid { grid-template-columns: 1fr; } }

.about-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; border-radius: var(--radius-lg); overflow: hidden; }
.about-strip img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
@media (max-width: 600px) { .about-strip { grid-template-columns: 1fr 1fr; } }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-cards { display: grid; gap: 16px; }
.cc { display: flex; gap: 16px; align-items: flex-start; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.cc .cc-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--sage-soft); color: var(--secondary); display: inline-flex; align-items: center; justify-content: center; }
.cc .cc-ic svg { width: 22px; height: 22px; }
.cc h3 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 4px; }
.cc p, .cc a { font-size: 15px; color: var(--muted); }
.cc a { color: var(--primary); font-weight: 600; }
.cc .cc-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* form */
.form-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-card h2 { color: var(--secondary); margin-bottom: 6px; }
.form-card .form-sub { color: var(--muted); margin-bottom: 22px; font-size: 15px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.chip { padding: 8px 15px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--surface); font-size: 14px; font-weight: 600; color: var(--secondary); transition: all .18s ease; }
.chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1.5px solid var(--border);
  background: var(--surface); font: inherit; font-size: 15.5px; color: var(--text); transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(182,74,46,.12); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.field .err { display: none; color: #c0392b; font-size: 12.5px; margin-top: 6px; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-foot { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }

.form-success { text-align: center; padding: 30px 10px; }
.form-success .fs-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--sage-soft); color: var(--secondary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.form-success .fs-ic svg { width: 32px; height: 32px; }
.form-success h2 { color: var(--secondary); margin-bottom: 10px; }
.form-success p { color: var(--muted); }

/* contact map full */
.map-wide { margin-top: 4px; position: relative; aspect-ratio: 16/7; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: linear-gradient(135deg, #eef4ef, #e3ede7); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
@media (max-width: 600px) { .map-wide { aspect-ratio: 4/3; } }
