/* ==========================================================================
   Amber Crocker — Boho Deco Elegance
   Shared stylesheet
   ========================================================================== */

:root {
  /* Official brand palette: Stormy Teal + Amber Gold are the main pair;
     Strong Cyan (turquoise) and Rusty Spice are energetic accent "pops";
     Onyx grounds everything on a crisp white ground. */
  --teal: #0B7476;
  --teal-dark: #085759;
  --turquoise: #35CFC7;
  --turquoise-deep: #1D726D;
  --gold: #F2B90F;
  --gold-dark: #8C6B09;
  --rust: #A1502A;
  --rust-dark: #7C3D20;
  --onyx: #121212;
  --white: #FFFFFF;
  --paper-alt: #F5F4F2;

  /* aliases kept so legacy rule names below keep working */
  --amber: var(--gold);
  --mustard: var(--gold);
  --charcoal: var(--onyx);
  --ink: var(--onyx);
  --cream: var(--white);
  --cream-deep: var(--paper-alt);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --max-width: 1160px;
  --radius: 18px;
  --shadow-soft: 0 12px 32px rgba(18, 18, 18, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }

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

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

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

section { padding: 80px 0; }
section.tight { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 14px;
}

.center { text-align: center; }
.lede {
  font-size: 1.2rem;
  max-width: 640px;
  color: #4A423B;
}
.lede.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn-secondary:hover { background: var(--teal-dark); color: var(--white); }

.btn-turquoise {
  background: var(--turquoise);
  color: var(--onyx);
}
.btn-turquoise:hover { background: var(--turquoise-deep); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.center .btn-row { justify-content: center; }

/* ---------- Sunburst mark ---------- */
.sunburst { display: inline-block; }
.sunburst svg { display: block; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(20, 16, 12, 0.10);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}
@media (max-width: 420px) {
  .brand-logo { height: 38px; }
}
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid rgba(20,16,12,0.10);
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(237,168,17,0.30), rgba(237,168,17,0) 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mustard), var(--rust));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.hero-art svg { width: 62%; height: 62%; }

/* ---------- Photos ---------- */
.hero-photo {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 8px solid var(--white);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.photo-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .gallery-3 { grid-template-columns: 1fr; }
}
.gallery-3 .photo-frame img { aspect-ratio: 3/4; }
.wide-photo {
  aspect-ratio: 16/9;
}
.wide-photo img { aspect-ratio: 16/9; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20,16,12,0.07);
  height: 100%;
}

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

/* ---------- Section variants ---------- */
.section-alt {
  background: var(--cream-deep);
}
.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .lede { color: #D2CABF; }

.section-rust {
  background: linear-gradient(120deg, var(--rust), var(--rust-dark));
  color: var(--white);
}
.section-rust h2 { color: var(--white); }
.section-rust .lede { color: rgba(255,255,255,0.85); }

/* ---------- Pills / tags ---------- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pill {
  background: var(--white);
  border: 1px solid rgba(20,16,12,0.15);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ---------- Lists ---------- */
.check-list {
  list-style: none;
  margin: 0; padding: 0;
}
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "\2726";
  position: absolute;
  left: 0; top: 1px;
  color: var(--turquoise);
}

/* ---------- Pricing ---------- */
.price-tag {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal);
  font-weight: 600;
  margin: 12px 0;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.quote-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--mustard);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(20,16,12,0.20);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 600px) {
  .form-card { padding: 26px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream-deep);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--mustard);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer a { color: var(--cream-deep); }
.site-footer a:hover { color: var(--mustard); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #A79C8C;
}

/* ---------- Breadcrumb hero (inner pages) ---------- */
.page-hero {
  padding: 64px 0 56px;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(11,116,118,0.15), rgba(11,116,118,0) 70%);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(20,16,12,0.12);
  padding: 22px 0;
}
.faq-item h3 { margin-bottom: 8px; font-size: 1.15rem; }
.faq-item p { color: #4A423B; margin: 0; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-turquoise { color: var(--teal); }
.divider {
  width: 60px; height: 3px;
  background: var(--mustard);
  border-radius: 3px;
  margin: 0 auto 20px;
}
.divider.left { margin: 0 0 20px; }
