/* ============================================================
   Saroji — Wedding Florals
   Palette: burgundy background, gold accents, cream/white text
   ============================================================ */
:root {
  --burgundy:        #4A0E16;  /* primary background */
  --burgundy-deep:   #380A10;  /* darker sections / footer */
  --burgundy-soft:   #5C1A27;  /* cards / raised surfaces */
  --gold:            #C5A253;
  --gold-bright:     #E6C878;
  --cream:           #F4ECDD;  /* primary text */
  --cream-dim:       #C9BCA6;  /* secondary text */
  --white:           #FFFFFF;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1120px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 1rem;
}

em { font-style: italic; color: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background .25s, color .25s, transform .25s;
  cursor: pointer;
}
.btn--gold { background: var(--gold); color: var(--burgundy-deep); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-bright); color: var(--burgundy-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); }
.btn--ghost:hover { background: rgba(197,162,83,.12); color: var(--gold-bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(56, 10, 16, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197,162,83,.18);
}
.brand__logo { height: 72px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__menu a:hover { color: var(--gold-bright); }
.nav__cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  color: var(--gold-bright) !important;
}
.nav__cta:hover { background: var(--gold); color: var(--burgundy-deep) !important; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 5rem var(--gutter);
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(92,26,39,.65), transparent 60%),
    linear-gradient(180deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  overflow: hidden;
}
.hero::after {
  /* subtle gold botanical glow */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at 85% 80%, rgba(197,162,83,.10), transparent 70%);
  pointer-events: none;
}
.hero__inner { max-width: 760px; position: relative; z-index: 1; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 1.5rem;
}
.hero__lede {
  font-size: 1.12rem;
  color: var(--cream-dim);
  max-width: 56ch;
  margin: 0 0 2.25rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Generic section ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.section__head { max-width: 60ch; margin: 0 auto 3rem; text-align: center; }
.section__head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.section__note { color: var(--cream-dim); font-size: 0.95rem; margin-top: 0.75rem; }
.section__note code { color: var(--gold-bright); font-size: 0.85em; }

/* ---------- Story ---------- */
.story__body {
  max-width: 64ch;
  margin: 0 auto;
  text-align: center;
  font-size: 1.12rem;
  color: var(--cream-dim);
}
.story__body p + p { margin-top: 1.4rem; }

/* ---------- Services cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--burgundy-soft);
  border: 1px solid rgba(197,162,83,.18);
  border-radius: 4px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card__icon { color: var(--gold); font-size: 1.5rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.45rem; margin-bottom: 0.6rem; color: var(--cream); }
.card p { color: var(--cream-dim); font-size: 0.98rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery__item {
  margin: 0;
  border-radius: 4px;
  border: 1px solid rgba(197,162,83,.22);
  background:
    repeating-linear-gradient(45deg, rgba(197,162,83,.05) 0 12px, transparent 12px 24px),
    var(--burgundy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__item span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-dim);
  font-size: 1.1rem;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Quote ---------- */
.quote {
  background: var(--burgundy-deep);
  padding: clamp(4rem, 9vw, 6.5rem) var(--gutter);
  text-align: center;
  border-block: 1px solid rgba(197,162,83,.18);
}
.quote blockquote { max-width: 50ch; margin: 0 auto; }
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--cream);
  line-height: 1.3;
  margin: 0 0 1.25rem;
}
.quote cite { font-style: normal; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold); }

/* ---------- Contact ---------- */
.contact__form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.field input, .field textarea {
  background: var(--burgundy-soft);
  border: 1px solid rgba(197,162,83,.28);
  border-radius: 3px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(197,162,83,.2);
}
.contact__form .btn { grid-column: 1 / -1; justify-self: center; }
.contact__direct { text-align: center; margin-top: 2rem; color: var(--cream-dim); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burgundy-deep);
  text-align: center;
  padding: 3.5rem var(--gutter);
  border-top: 1px solid rgba(197,162,83,.18);
}
.site-footer__mark { width: 46px; margin: 0 auto 1rem; }
.site-footer__name { font-family: var(--serif); letter-spacing: 0.35em; color: var(--gold-bright); font-size: 1.4rem; margin: 0; }
.site-footer__tag { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.72rem; color: var(--cream-dim); margin: 0.5rem 0 1.5rem; }
.site-footer__copy { font-size: 0.82rem; color: var(--cream-dim); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .site-header { padding: 0.65rem var(--gutter); }
  .brand__logo { height: 60px; }

  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: 100%;
    right: var(--gutter);
    left: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--burgundy-soft);
    border: 1px solid rgba(197,162,83,.25);
    border-radius: 4px;
    padding: 0.5rem 0;
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { padding: 0; }
  .nav__menu a { display: block; padding: 0.85rem 1.25rem; }   /* full-width tap targets */
  .nav__cta { display: block; margin: 0.5rem 1.25rem; text-align: center; }

  .hero { min-height: auto; padding: 4rem var(--gutter) 3.5rem; }
  .hero__actions .btn { flex: 1 1 auto; text-align: center; }   /* buttons share the row */

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .contact__form { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  :root { --gutter: 1.25rem; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 2.6rem); }
  .hero__lede { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
}
