/* ===========================================================
   Quilted Peacock — shared styles
   Brand: peacock teal + warm cream + gold accent
   =========================================================== */

:root {
  --teal:        #0e5e63;
  --teal-deep:   #0a464a;
  --teal-bright: #12808a;
  --gold:        #c5963f;
  --gold-soft:   #e4c98a;
  --cream:       #faf6ee;
  --cream-2:     #f1e9da;
  --mint:        #d3efe1;
  --mint-deep:   #bfe6d3;
  --ink:         #26302f;
  --muted:       #5f6b6a;
  --line:        #e2dccd;
  --white:       #ffffff;

  --maxw: 1120px;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(14, 94, 99, 0.10);
  --shadow-lg: 0 14px 40px rgba(10, 70, 74, 0.18);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; color: var(--teal-deep); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 0 .5em; }
h3 { font-size: 1.25rem; margin: 0 0 .4em; }
p { margin: 0 0 1rem; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-bright); }

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--cream-2); }
.section--teal { background: var(--mint); color: var(--ink); }
.section--teal h1, .section--teal h2, .section--teal h3 { color: var(--teal-deep); }
.section--teal a { color: var(--teal); }
.section--teal .lead { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: .2s;
}
.btn--primary { background: var(--gold); color: #3a2c08; }
.btn--primary:hover { background: var(--gold-soft); color: #3a2c08; transform: translateY(-2px); }
.btn--ghost { border-color: currentColor; color: var(--teal-deep); background: transparent; }
.btn--ghost:hover { background: var(--teal-deep); color: var(--cream); }
.section--teal .btn--ghost { color: var(--teal-deep); }
.section--teal .btn--ghost:hover { background: var(--teal-deep); color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row.center { justify-content: center; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--teal-deep); }
.brand img { height: 68px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 500; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--teal-bright); }
.nav-links a[aria-current="page"] { border-bottom: 2px solid var(--gold); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--teal-deep); margin: 5px 0; transition: .3s; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--mint); color: var(--ink); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 0; }
.hero h1 { color: var(--teal-deep); }
.hero p { color: var(--muted); font-size: 1.2rem; max-width: 48ch; }
.hero__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---------- feature/cards grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.card h3 { color: var(--teal); }

/* ---------- pricing/info lists ---------- */
.ticklist { list-style: none; padding: 0; margin: 0 0 1rem; }
.ticklist li { position: relative; padding-left: 1.7rem; margin-bottom: .55rem; }
.ticklist li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .9rem; top: .15rem; }

.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); text-align: center; }
.price-card .price { font-family: var(--serif); font-size: 2.6rem; color: var(--teal); font-weight: 700; }
.price-card .price small { font-size: 1rem; color: var(--muted); font-family: var(--sans); }
.tag { display: inline-block; background: var(--gold-soft); color: #3a2c08; font-weight: 600; font-size: .8rem; padding: .25rem .7rem; border-radius: 999px; margin-bottom: .8rem; }

/* ---------- gallery grid ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--cream-2); aspect-ratio: 1/1; cursor: zoom-in; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { display: none; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(10, 33, 35, .92); display: none; align-items: center; justify-content: center; z-index: 100; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__cap { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: var(--cream); font-family: var(--serif); font-size: 1.05rem; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer; border-radius: 999px; width: 48px; height: 48px; font-size: 1.5rem; line-height: 1; transition: .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* ---------- contact ---------- */
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); max-width: 560px; margin-inline: auto; text-align: center; }
.contact-method { font-size: 1.3rem; font-weight: 600; margin: .6rem 0; }
.placeholder { background: #fff6da; border: 1px dashed var(--gold); color: #6b5212; padding: .15rem .5rem; border-radius: 6px; font-size: .95rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--mint); color: var(--ink); padding: 2.5rem 0 1.5rem; border-top: 1px solid var(--mint-deep); }
.site-footer a { color: var(--teal); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; }
.footer-grid .brand { color: var(--teal-deep); }
.footer-nav { display: flex; gap: 1.2rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.footer-nav a { color: var(--ink); }
.copyright { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--mint-deep); font-size: .85rem; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .9rem 1.25rem; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a[aria-current="page"] { border-bottom: 1px solid var(--line); background: var(--cream-2); }
}
