/* ============================================================
   Berkeley Plaza — design tokens
   Palette: cypress green + antique brass on warm ecru paper,
   built around a wedding-stationery / invitation motif.
   ============================================================ */

:root {
  --ink: #262420;
  --stone: #6b6558;
  --cypress: #2b3a2f;
  --cypress-dark: #1c2620;
  --brass: #a9824c;
  --brass-light: #c9a868;
  --ecru: #f3eee2;
  --paper: #fbf9f4;
  --linen: #e4dcc9;
  --white: #ffffff;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1120px;
  --radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--cypress);
  text-decoration-color: var(--brass);
  text-underline-offset: 3px;
}
a:hover { color: var(--brass); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cypress-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.35rem); }
h3 { font-size: 1.3rem; }

p { max-width: 62ch; }
.measure-wide p { max-width: 72ch; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--brass);
  color: var(--white);
}
.btn-primary:hover { background: var(--brass-light); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251,249,244,0.55);
}
.btn-outline:hover { border-color: var(--brass); color: var(--brass-light); }
.btn-outline-dark {
  background: transparent;
  color: var(--cypress-dark);
  border-color: var(--cypress-dark);
}
.btn-outline-dark:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- header / nav ---------- */
.site-header {
  background: var(--cypress-dark);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(169,130,76,0.35);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand span { color: var(--brass-light); }
.brand:hover { color: var(--paper); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(251,249,244,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
  border-bottom-color: var(--brass);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(251,249,244,0.4);
  color: var(--paper);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--cypress-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.2rem;
    border-bottom: 1px solid rgba(169,130,76,0.35);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 0; border-bottom: 1px solid rgba(251,249,244,0.12); }
}

/* ---------- page header (non-home hero) ---------- */
.page-header {
  background: var(--cypress);
  color: var(--paper);
  padding: 3.2rem 0 2.6rem;
}
.page-header .eyebrow {
  color: var(--brass-light);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.page-header h1 { color: var(--paper); margin-bottom: 0.4rem; }
.page-header p { color: rgba(251,249,244,0.82); }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(251,249,244,0.65);
}
.breadcrumb a { color: rgba(251,249,244,0.8); }

/* ---------- home hero ---------- */
.hero {
  background: var(--cypress);
  color: var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 4rem;
}
.hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--brass-light);
  border: 1px solid rgba(169,130,76,0.5);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}
.hero h1 { color: var(--paper); margin-bottom: 1rem; }
.hero p.lede {
  color: rgba(251,249,244,0.85);
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-art { justify-self: center; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding: 2.8rem 0 2.4rem; }
  .hero-art { order: -1; max-width: 280px; margin: 0 auto; }
}

/* ---------- generic sections ---------- */
.section { padding: 4rem 0; }
.section-tight { padding: 2.6rem 0; }
.section-alt { background: var(--ecru); }

.section-head { margin-bottom: 2.2rem; }
.section-head .kicker {
  color: var(--brass);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split.reverse .split-art { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-art { order: -1; }
}

hr.rule {
  border: none;
  border-top: 1px solid var(--linen);
  margin: 2.4rem 0;
}

/* ---------- editorial list (services) ---------- */
.service-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--linen);
}
.service-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--linen);
  align-items: flex-start;
}
.service-list .icon { color: var(--brass); }
.service-list h3 { margin-bottom: 0.3rem; }
.service-list p { margin: 0; color: var(--stone); }

/* ---------- gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-card {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 1.6rem 1.4rem 1.3rem;
}
.gallery-card .frame {
  aspect-ratio: 1;
  background: var(--ecru);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.gallery-card figcaption { font-size: 0.9rem; color: var(--stone); }
.gallery-card figcaption strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin-bottom: 0.15rem; }

/* ---------- testimonial ---------- */
.quote-block {
  border-left: 3px solid var(--brass);
  padding-left: 1.6rem;
  margin: 0 0 2.2rem;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cypress-dark);
  margin: 0 0 0.7rem;
}
.quote-block cite {
  font-style: normal;
  color: var(--stone);
  font-size: 0.92rem;
}

/* ---------- menu tables ---------- */
.menu-block { margin-bottom: 2.6rem; }
.menu-block h3 {
  border-bottom: 1px solid var(--linen);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--linen);
  color: var(--stone);
}
.menu-items li span:first-child { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--cypress-dark);
  color: var(--paper);
  padding: 3.4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--paper); }
.cta-band p { color: rgba(251,249,244,0.8); margin: 0 auto 1.6rem; }

/* ---------- contact / form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.info-list li { display: grid; grid-template-columns: 26px 1fr; gap: 0.8rem; padding: 0.55rem 0; }
.info-list .icon { color: var(--brass); }

form.inquiry { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--cypress-dark); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--stone); }

.map-frame {
  border: 1px solid var(--linen);
  aspect-ratio: 4/3;
  background: var(--ecru);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1.6rem;
}

/* ---------- brochure ---------- */
.brochure-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 2rem;
}
@media (max-width: 700px) { .brochure-card { grid-template-columns: 1fr; } }
.brochure-cover {
  aspect-ratio: 3/4;
  background: var(--cypress);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--cypress-dark);
  color: rgba(251,249,244,0.75);
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--paper); font-size: 1rem; margin-bottom: 0.9rem; }
.site-footer a { color: rgba(251,249,244,0.75); }
.site-footer a:hover { color: var(--brass-light); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(251,249,244,0.15);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(251,249,244,0.55);
  font-size: 0.85rem;
}
