/* =========================================================
   Gayane Events — design system
   Type: Cormorant Garamond (display) + Jost (body/UI)
   Palette: white + ivory paper tones with a single antique
   gold accent — restrained, not gilded-everywhere
   ========================================================= */

:root{
  --white:      #ffffff;
  --ivory:      #fbf7ee;   /* warm paper wash */
  --ivory-deep: #f3e9d4;
  --gold:       #b68a35;   /* primary accent */
  --gold-light: #d9b872;
  --gold-deep:  #8c6423;
  --ink:        #2b241c;   /* warm near-black */
  --ink-soft:   #5c4f3d;
  --line:       #e8dcc0;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16.5px;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}
p{ margin: 0 0 1em; max-width: 62ch; color: var(--ink-soft); }
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
section{ padding: 100px 0; }
@media (max-width: 720px){
  section{ padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible{
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ---------- ornament rule ---------- */
.rule{
  width: 64px;
  height: 1px;
  background: var(--gold);
  position: relative;
  margin: 0 0 22px;
}
.rule::after{
  content: "";
  position: absolute;
  left: 28px; top: -2.5px;
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
}
.rule.center{ margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-gold{
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover{ background: var(--gold-deep); }
.btn-line{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-line:hover{ border-color: var(--gold); color: var(--gold-deep); }
.btn-line-light{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-line-light:hover{ border-color: #fff; }

/* ---------- header / nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand .mono{
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.brand .word{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after{ right: 0; }
.nav-cta{ display: flex; align-items: center; gap: 20px; }
.nav-phone{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-phone svg{ flex-shrink: 0; color: var(--gold-deep); }

.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  cursor: pointer;
}
.hamburger span{
  width: 20px;
  height: 1px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-links{
    position: fixed;
    top: 74px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open{ max-height: 420px; }
  .nav-links li{ width: 100%; }
  .nav-links a{
    display: block;
    padding: 18px 24px;
    width: 100%;
    border-bottom: 1px solid var(--ivory-deep);
  }
  .nav-links a::after{ display: none; }
  .nav-cta .btn-line{ display: none; }
  .hamburger{ display: flex; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 620px;
}
.hero-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
}
.hero-copy .eyebrow{
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.hero-copy h1{
  font-size: clamp(2.6rem, 4.6vw, 3.9rem);
  color: var(--ink);
}
.hero-copy p.lede{
  font-size: 1.12rem;
  max-width: 42ch;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 8px;
}
.hero-media{
  position: relative;
  min-height: 340px;
}
.hero-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.hero-media::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(43,36,28,0.35), rgba(43,36,28,0) 45%);
  z-index: 1;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; min-height: auto; }
  .hero-copy{ padding: 56px 24px 40px; order: 2; }
  .hero-media{ order: 1; min-height: 320px; }
}

/* ---------- trust strip ---------- */
.trust-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-strip .container{
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px 24px;
}
.trust-strip p{
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.trust-strip .marks{
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-deep);
}

/* ---------- section headings ---------- */
.section-head{
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow{
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
  display: block;
}
.section-head h2{
  font-size: clamp(2rem, 3.2vw, 2.7rem);
}
.section-head p{ font-size: 1.05rem; }

/* ---------- service list (home teaser) ---------- */
.service-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-cell{
  background: var(--white);
  padding: 44px 40px;
}
.service-cell .idx{
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  display: block;
}
.service-cell h3{ font-size: 1.5rem; margin-bottom: 10px; }
.service-cell p{ margin: 0 0 14px; }
.service-cell a{
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-deep);
  font-weight: 500;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}
@media (max-width: 720px){
  .service-list{ grid-template-columns: 1fr; }
}

/* ---------- services page detail ---------- */
.service-detail{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child{ border-bottom: none; }
.service-detail.reverse .copy{ order: 2; }
.service-detail.reverse .visual{ order: 1; }
.service-detail .visual{
  overflow: hidden;
  position: relative;
  min-height: 380px;
  border: 1px solid var(--line);
}
.service-detail .visual img{
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.service-detail .copy .num{
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.04em;
}
.service-detail h3{ font-size: 2.1rem; }
.service-detail ul{
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}
.service-detail ul li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.service-detail ul li svg{ flex-shrink: 0; margin-top: 4px; color: var(--gold); }
@media (max-width: 900px){
  .service-detail, .service-detail.reverse{ grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse .copy{ order: 1; }
  .service-detail.reverse .visual{ order: 2; }
}

/* ---------- process ---------- */
.process{
  background: var(--ink);
  color: #f4ecd8;
  padding: 72px 48px;
}
.process .section-head .eyebrow{ color: var(--gold-light); }
.process .section-head h2, .process .section-head p{ color: #f4ecd8; }
.process .section-head p{ color: #cfc2a4; }
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step{
  border-top: 1px solid var(--gold);
  padding-top: 20px;
}
.process-step .step-num{
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 10px;
}
.process-step h4{ color: #fff; font-size: 1.15rem; }
.process-step p{ color: #cfc2a4; font-size: 0.95rem; margin: 0; }
@media (max-width: 900px){
  .process{ padding: 48px 24px; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .process-grid{ grid-template-columns: 1fr; }
}

/* ---------- stat band ---------- */
.stat-band{
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-band div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-deep);
}
.stat-band div span{
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 720px){
  .stat-band{ grid-template-columns: 1fr 1fr; padding: 40px 24px; }
}

/* ---------- about page ---------- */
.about-hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero .visual{
  position: relative;
  border: 1px solid var(--line);
}
.about-hero .visual img{ height: 540px; object-fit: cover; }
@media (max-width: 900px){
  .about-hero{ grid-template-columns: 1fr; }
  .about-hero .visual img{ height: 340px; }
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-card{
  padding: 40px 34px;
  background: var(--white);
}
.value-card h4{ font-size: 1.3rem; margin-bottom: 10px; }
.value-card p{ margin: 0; }
@media (max-width: 860px){
  .values-grid{ grid-template-columns: 1fr; }
}

/* ---------- contact page ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-card{
  background: var(--ivory);
  padding: 40px;
  border: 1px solid var(--line);
}
.contact-line{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-child{ border-bottom: none; }
.contact-line .icon{
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-deep);
}
.contact-line a{ text-decoration: none; font-weight: 500; color: var(--ink); }
.contact-line span{ display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px; }

form.lead-form{
  display: grid;
  gap: 20px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }
.field{ display: grid; gap: 8px; }
.field label{
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea{
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--gold);
  outline: none;
}
.field textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size: 0.85rem; color: var(--ink-soft); }
.form-status{
  display: none;
  padding: 14px 16px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.95rem;
}
.form-status.success{
  display: block;
  background: #f3ecd7;
  color: var(--gold-deep);
  border: 1px solid var(--gold-light);
}
.form-status.error{
  display: block;
  background: #fdeceb;
  color: #b3392c;
  border: 1px solid #f6c6c1;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--ink);
  color: #fff;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band .eyebrow{ color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; display:block; margin-bottom: 8px; }
.cta-band h2{ font-size: 2rem; margin-bottom: 6px; color: #fff; }
.cta-band p{ margin: 0; color: #cfc2a4; }
.cta-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer.site-footer{
  background: var(--ivory-deep);
  color: var(--ink-soft);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h5{
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-grid .brand{ margin-bottom: 14px; }
.footer-grid p{ font-size: 0.92rem; }
.footer-grid ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-grid a{ color: var(--ink-soft); text-decoration: none; font-size: 0.94rem; }
.footer-grid a:hover{ color: var(--gold-deep); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #9c8c6c;
}
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- page hero (services/about/contact top) ---------- */
.page-hero{
  background: var(--ivory);
  padding: 68px 0 58px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow{
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
  display: block;
}
.page-hero h1{ font-size: clamp(2.3rem, 4.4vw, 3.3rem); max-width: 18ch; }
.page-hero p{ font-size: 1.1rem; max-width: 54ch; }
