/* ============================================================
   Gold Standard Events — gsevents.co
   Light · Warm · Editorial Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  /* Palette: Cream · Warm White · Vibrant Gold · Deep Navy accent */
  --cream:        #FAF7F2;
  --warm-white:   #F5F0E8;
  --sand:         #EDE5D8;
  --gold:         #C09A3E;      /* richer, warmer gold to match logo */
  --gold-light:   #D4B05A;
  --gold-pale:    #F0E3C0;
  --gold-dark:    #9A7A28;
  --navy:         #1E2D40;      /* used only in footer + testimonial */
  --text-dark:    #1A1714;
  --text-mid:     #5C5449;
  --text-light:   #9A9088;
  --border:       #E2D9CC;
  --white:        #FFFFFF;

  /* Fonts */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Sizes — generous for readability */
  --xs:   0.9rem;
  --sm:   1.0625rem;
  --base: 1.1875rem;
  --md:   1.3125rem;
  --lg:   1.5625rem;
  --xl:   1.875rem;
  --2xl:  2.25rem;
  --3xl:  3rem;
  --4xl:  4rem;

  /* Spacing */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4.5rem;
  --s7: 7rem;
  --s8: 9rem;

  /* Layout */
  --max:      1280px;
  --max-text: 760px;
  --nav-h:    90px;

  /* Transitions */
  --fast: 0.18s ease;
  --mid:  0.35s ease;
  --slow: 0.6s ease;

  /* Shadows */
  --shadow-sm: 0 2px 16px rgba(28,26,23,0.06);
  --shadow-md: 0 8px 40px rgba(28,26,23,0.10);
  --shadow-lg: 0 20px 60px rgba(28,26,23,0.13);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--text-dark); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--sans); }

/* ── Type ── */
h1,h2,h3,h4,h5 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h4 { font-size: clamp(1.3rem, 2vw, 2rem); }
p  { font-size: var(--md); line-height: 1.9; color: var(--text-mid); }

/* ── Layout helpers ── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--s4); }
.container--narrow { max-width: var(--max-text); margin: 0 auto; padding: 0 var(--s4); }
.section { padding: var(--s8) 0; }
.section--warm { background: var(--warm-white); }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); }
.text-center { text-align: center; }
.serif { font-family: var(--serif); }

/* ── Section label (eyebrow) ── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s2);
}

/* ── Gold rule ── */
.rule { width: 48px; height: 1px; background: var(--gold); margin: var(--s3) 0; }
.rule--center { margin: var(--s3) auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--mid);
  white-space: nowrap;
}
.btn--gold    { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--white); }
.btn--dark    { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--dark:hover { opacity: 0.85; }
.btn--white   { background: var(--white); color: var(--text-dark); border-color: var(--white); }
.btn--white:hover { background: var(--cream); }


/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--mid);
}
.nav--top {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav--scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s4);
}
.nav__logo img { height: 80px; width: auto; }

.nav__links { display: flex; align-items: center; gap: var(--s5); }
.nav__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--mid);
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Nav is always white — no transparent override needed */

.nav__cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
  transition: all var(--mid);
}
.nav__cta:hover { background: var(--gold); color: var(--white); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s1);
}
.nav__toggle span { display: block; width: 22px; height: 1px; background: var(--text-dark); transition: all var(--fast); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
}
.nav-overlay.open { display: flex; }
.nav-overlay__close {
  position: absolute; top: var(--s4); right: var(--s4);
  font-size: 1.4rem; background: none; border: none; cursor: pointer; color: var(--text-dark);
}
.nav-overlay__link {
  font-family: var(--serif);
  font-size: var(--3xl);
  font-weight: 300;
  color: var(--text-dark);
  transition: color var(--fast);
}
.nav-overlay__link:hover { color: var(--gold); }


/* ════════════════════════════════════════
   HERO — Light, Editorial, Split Layout
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--cream);
  padding-top: var(--nav-h);
}

/* Left: text panel */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s8) var(--s5) var(--s8) max(var(--s5), calc((100vw - var(--max)) / 2 + var(--s4)));
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--text-dark);
  margin-bottom: var(--s4);
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero__sub {
  font-size: var(--lg);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: var(--s5);
}
.hero__actions { display: flex; gap: var(--s3); flex-wrap: wrap; }

/* Right: photo panel */
.hero__photo {
  position: relative;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Gold accent bar on photo edge */
.hero__photo::before {
  content: '';
  position: absolute;
  top: var(--s7); bottom: var(--s7);
  left: 0;
  width: 3px;
  background: var(--gold);
  z-index: 2;
}

/* Scroll cue */
.hero__scroll {
  display: none; /* hidden in split layout */
}
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}


/* ════════════════════════════════════════
   INTRO STRIP (below hero)
════════════════════════════════════════ */
.intro-strip {
  background: var(--white);
  padding: var(--s6) 0;
  border-bottom: 1px solid var(--border);
}
.intro-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s7);
  flex-wrap: wrap;
  text-align: center;
}
.intro-strip__stat {}
.intro-strip__num {
  font-family: var(--serif);
  font-size: var(--3xl);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.intro-strip__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.intro-strip__divider { width: 1px; height: 50px; background: var(--border); }


/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about {
  padding: var(--s8) 0;
  background: var(--cream);
}
.about__inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--s7);
  align-items: start;
}
.about__text .eyebrow { margin-bottom: var(--s2); }
.about__text h2 { color: var(--text-dark); margin-bottom: var(--s3); }
.about__text p { margin-bottom: var(--s3); font-size: var(--md); }
.about__text p:last-of-type { margin-bottom: var(--s4); }

.about__photo { position: sticky; top: calc(var(--nav-h) + var(--s4)); }
.about__photo-frame {
  position: relative;
  padding: 18px 0 0 18px;
}
.about__photo-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 18px; bottom: 18px;
  border: 1px solid var(--gold);
}
.about__photo-frame img {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

/* Quote pull */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  margin: var(--s3) 0 var(--s4);
  background: var(--warm-white);
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}


/* ════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════ */
.services {
  padding: var(--s8) 0;
  background: var(--warm-white);
}
.services__header {
  text-align: center;
  margin-bottom: var(--s7);
}
.services__header h2 { color: var(--text-dark); margin-bottom: var(--s2); }
.services__header p { font-size: var(--md); max-width: 560px; margin: 0 auto; }

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.service-card {
  background: var(--white);
  padding: var(--s6) var(--s5);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--mid), box-shadow var(--mid);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--slow);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: var(--s3);
}
.service-card__title {
  font-family: var(--serif);
  font-size: var(--2xl);
  color: var(--text-dark);
  margin-bottom: var(--s2);
}
.service-card__desc {
  font-size: var(--sm);
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: var(--s4);
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--s4);
  padding-top: var(--s2);
  border-top: 1px solid var(--border);
}
.service-card__list li {
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li::before { content: '—'; color: var(--gold); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--fast);
}
.service-card__link::after { content: '→'; }
.service-card__link:hover { gap: 12px; }


/* ════════════════════════════════════════
   HOW I WORK (Process)
════════════════════════════════════════ */
.process {
  padding: var(--s8) 0;
  background: var(--cream);
}
.process__header { text-align: center; margin-bottom: var(--s7); }
.process__header h2 { color: var(--text-dark); margin-bottom: var(--s2); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.process__step {
  padding: var(--s4);
  border-top: 2px solid var(--border);
  position: relative;
}
.process__step::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--slow);
}
.process__step:hover::before { width: 100%; }
.process__num {
  font-family: var(--serif);
  font-size: var(--3xl);
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: var(--s2);
}
.process__step h4 {
  font-family: var(--sans);
  font-size: var(--sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: var(--s1);
}
.process__step p { font-size: var(--sm); }


/* ════════════════════════════════════════
   PORTFOLIO / GALLERY
════════════════════════════════════════ */
.portfolio {
  padding: var(--s8) 0;
  background: var(--warm-white);
}
.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s6);
}
.portfolio__header h2 { color: var(--text-dark); }

.portfolio__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.portfolio__item { position: relative; overflow: hidden; cursor: pointer; }
.portfolio__item--main { grid-row: span 2; }
.portfolio__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--slow);
  display: block;
}
.portfolio__item--main img { height: 580px; }
.portfolio__item:not(.portfolio__item--main) img { height: 284px; }
.portfolio__item:hover img { transform: scale(1.04); }
.portfolio__item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--mid);
  display: flex;
  align-items: flex-end;
  padding: var(--s3);
}
.portfolio__item:hover .portfolio__item__overlay { opacity: 1; }
.portfolio__item__label { font-size: var(--xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); }
.portfolio__item__title { font-family: var(--serif); font-size: var(--xl); color: var(--white); font-weight: 400; margin-top: 4px; }


/* ════════════════════════════════════════
   TESTIMONIAL
════════════════════════════════════════ */
.testimonial {
  padding: var(--s8) 0;
  background: var(--navy);
  text-align: center;
}
.testimonial__inner { max-width: 820px; margin: 0 auto; padding: 0 var(--s4); }
.testimonial__mark {
  font-family: var(--serif);
  font-size: 7rem;
  color: var(--gold);
  line-height: 0.4;
  margin-bottom: var(--s4);
  opacity: 0.45;
}
.testimonial__text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: var(--s4);
}
.testimonial__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial__role { font-size: var(--xs); color: rgba(255,255,255,0.4); margin-top: 4px; letter-spacing: 0.08em; }


/* ════════════════════════════════════════
   IDEAL CLIENTS
════════════════════════════════════════ */
.ideal {
  padding: var(--s8) 0;
  background: var(--cream);
}
.ideal__header { text-align: center; margin-bottom: var(--s7); }
.ideal__header h2 { color: var(--text-dark); }
.ideal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.ideal-card {
  padding: var(--s5);
  background: var(--white);
  border: 1px solid var(--border);
}
.ideal-card h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--border);
}
.ideal-card ul { display: flex; flex-direction: column; gap: var(--s1); }
.ideal-card ul li {
  font-size: var(--sm);
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  padding: var(--s1) 0;
  border-bottom: 1px solid var(--warm-white);
}
.ideal-card ul li::before { content: '›'; color: var(--gold); font-size: 1rem; flex-shrink: 0; }


/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta {
  padding: var(--s8) 0;
  background: var(--warm-white);
  text-align: center;
}
.cta__inner { max-width: 680px; margin: 0 auto; }
.cta__inner h2 { color: var(--text-dark); margin-bottom: var(--s3); }
.cta__inner p { font-size: var(--md); margin-bottom: var(--s5); }


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: var(--s7) 0 var(--s4);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s5);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--s4);
}
.footer__brand img { height: 44px; margin-bottom: var(--s3); }
.footer__brand p { font-size: var(--sm); color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 270px; }
.footer__col h6 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s3);
}
.footer__col li { margin-bottom: 10px; }
.footer__col li a { font-size: var(--sm); color: rgba(255,255,255,0.5); transition: color var(--fast); }
.footer__col li a:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--xs); color: rgba(255,255,255,0.35);
}
.footer__social { display: flex; gap: var(--s3); }
.footer__social a { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color var(--fast); }
.footer__social a:hover { color: var(--gold); }


/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--s7));
  padding-bottom: var(--s7);
  background: var(--warm-white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero__label {
  display: block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s2);
}
.page-hero h1 { color: var(--text-dark); font-weight: 300; margin-bottom: var(--s3); }
.page-hero p { font-size: var(--md); color: var(--text-mid); max-width: 520px; margin: 0 auto; }

.contact-section { padding: var(--s8) 0; background: var(--cream); }
.contact-section__inner { display: grid; grid-template-columns: 5fr 4fr; gap: var(--s7); align-items: start; }

.contact-info .eyebrow { margin-bottom: var(--s2); }
.contact-info h2 { color: var(--text-dark); margin-bottom: var(--s3); }
.contact-info > p { font-size: var(--md); margin-bottom: var(--s3); }
.contact-details { margin-top: var(--s5); display: flex; flex-direction: column; gap: var(--s3); }
.contact-detail { display: flex; gap: var(--s3); }
.contact-detail__label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); min-width: 90px; padding-top: 2px;
}
.contact-detail__value { font-size: var(--sm); color: var(--text-mid); }

.contact-form {
  background: var(--white);
  padding: var(--s6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-family: var(--serif); font-size: var(--2xl); color: var(--text-dark); margin-bottom: var(--s4); }
.form-group { margin-bottom: var(--s3); }
.form-group label {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  font-size: var(--sm); color: var(--text-dark);
  background: var(--cream); border: 1px solid var(--border);
  outline: none; transition: border-color var(--fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }


/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .process__steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --s7: 4rem; --s8: 5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  /* Hero stacks on mobile */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 55vw;
  }
  .hero__content {
    padding: var(--s6) var(--s4) var(--s4);
    order: 1;
  }
  .hero__photo { order: 2; }
  .hero__photo::before { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { position: static; order: -1; }
  .services__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item--main { grid-row: span 1; }
  .portfolio__item--main img, .portfolio__item:not(.portfolio__item--main) img { height: 300px; }
  .ideal__grid { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .intro-strip__divider { display: none; }
  .intro-strip__inner { gap: var(--s4); }
}

@media (max-width: 600px) {
  :root { --s7: 3rem; --s8: 4rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .portfolio__header { flex-direction: column; align-items: flex-start; gap: var(--s2); }
  .process__steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--s2); text-align: center; }
}
