/* =========================================================
   The Ivory Touch — shared stylesheet
   Edit colours in ONE place below (:root) to restyle the
   whole site.
   ========================================================= */

:root {
  --ivory:      #FBF8F3;   /* page background */
  --cream:      #F3ECE1;   /* soft section background */
  --charcoal:   #3A3532;   /* main text */
  --muted:      #7A716A;   /* secondary text */
  --gold:       #B8925A;   /* accent / buttons */
  --gold-dark:  #9A7842;   /* accent hover */
  --line:       #E5DCCF;   /* borders */
  --white:      #FFFFFF;
  --shadow:     0 10px 40px rgba(58, 53, 50, 0.08);
  --radius:     14px;
  --max:        1140px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.5rem; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ---------- Layout helpers ---------- */
.container { width: 90%; max-width: var(--max); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section--cream { background: var(--cream); }
.text-center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 620px; }
.text-center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: var(--white); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: var(--charcoal);
}
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.9rem; letter-spacing: 0.5px; color: var(--muted);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--charcoal);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  background:
    linear-gradient(rgba(58,53,50,0.30), rgba(58,53,50,0.40)),
    linear-gradient(135deg, #d9c7ab, #b8925a);
  color: var(--white);
  text-align: center;
}
.hero .container { padding: 4rem 0; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero p { font-size: 1.2rem; max-width: 620px; margin: 0 auto 2rem; opacity: 0.95; }
.hero .eyebrow { color: #F0E4CF; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Intro / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.placeholder-img {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ece0cd, #c9ad82);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  letter-spacing: 1px; box-shadow: var(--shadow);
  text-align: center; padding: 2rem;
}

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 1.8rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Price list ---------- */
.price-list { max-width: 640px; margin: 0 auto; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.9rem 0; border-bottom: 1px dashed var(--line);
  gap: 1rem;
}
.price-row .name { font-weight: 500; }
.price-row .dots { flex: 1; border-bottom: 1px dotted var(--line); margin: 0 0.5rem; transform: translateY(-4px); }
.price-row .price { color: var(--gold); font-weight: 500; white-space: nowrap; }
.note {
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem; border-radius: 8px; color: var(--muted);
  font-size: 0.95rem; margin-top: 2rem;
}

/* ---------- Contact / info ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.info-block h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 0.4rem; }
.info-block p { color: var(--muted); }
.info-block a:hover { color: var(--gold); }
.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
.post-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card .thumb {
  height: 200px;
  background: linear-gradient(135deg, #ece0cd, #c9ad82);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
}
.post-card .body { padding: 1.8rem; }
.post-card .date { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.post-card h3 { margin: 0.5rem 0 0.7rem; }
.post-card p { color: var(--muted); font-size: 0.96rem; }

/* Article body */
.article { max-width: 720px; margin: 0 auto; }
.article .date { color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }
.article h1 { margin: 0.6rem 0 1.5rem; }
.article h2 { margin: 2.2rem 0 0.9rem; }
.article p { margin-bottom: 1.2rem; }
.article ul { margin: 0 0 1.2rem 1.4rem; color: var(--charcoal); }
.article li { margin-bottom: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #d9d1c9; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer h4 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.5rem; margin-bottom: 0.8rem; }
.site-footer a { color: #d9d1c9; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; color: #a89f96; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); color: #fff; text-align: center; padding: 4rem 0; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { max-width: 540px; margin: 0 auto 1.8rem; opacity: 0.95; }
.cta-band .btn { background: #fff; color: var(--gold-dark); }
.cta-band .btn:hover { background: var(--charcoal); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid--3, .info-grid, .post-grid, .footer-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--ivory);
    padding: 1.5rem; gap: 1.2rem; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 4rem 0; }
}
