/* ============================================================
   THE STYLING CO. — v2
   Designed from scratch Jun 22, 2026
   Editorial luxury. Confident, warm, not cold.
   ============================================================ */

/* ── TOKENS ── */
:root {
  --midnight:   #1a1a1a;
  --ink:        #2c2c2c;
  --warm-white: #faf8f5;
  --linen:      #f2ede6;
  --sand:       #c9b99a;
  --olive:      #7a7455;
  --muted:      #888078;
  --border:     rgba(0,0,0,0.10);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;

  --max-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  --nav-h: 64px;
}

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

/* ── TYPOGRAPHY GLOBALS ── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.75rem;
}

.link-arrow {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--olive);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.link-arrow:hover { border-color: var(--olive); }

.btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--ink); color: var(--warm-white); }
.btn:active { transform: scale(0.97); opacity: 0.85; }
.btn:disabled,
.btn[disabled] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ── FOCUS + ACTIVE STATES ── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: rgba(255,255,255,0.55);
  outline: 2px solid var(--sand);
  outline-offset: 0;
}
.form-check input[type=checkbox]:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 2px;
}
.nav__cta:active,
.nav__links a:active { opacity: 0.65; }
.hero__cta:active { opacity: 0.75; }
a.service--link:active { transform: translateY(-1px); }
.journal__post:active { opacity: 0.75; }
.link-arrow:active { opacity: 0.65; }
.btn--full { width: 100%; text-align: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav__links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 1; }

.nav__cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav__cta:hover { background: var(--ink); color: var(--warm-white); }

/* ── HERO — magazine split ── */
/* ── HERO — magazine cover ── */
.hero {
  position: relative;
  height: calc(100svh - var(--nav-h));
  max-height: 960px;
  min-height: 560px;
  margin-top: var(--nav-h);
  overflow: hidden;
  background: var(--midnight);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Full-bleed photo: Callie is portrait 1200×1800 — position her right-of-center
   so the left zone stays dark for the text overlay */
.hero__photo-wrap {
  position: absolute;
  inset: 0;
  /* Photo sits right side: translate right so left zone is empty/dark */
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__img {
  /* right panel: fill the full right half — portrait crops from top so face is always visible */
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* Hide fallback image when video loads */
.hero__img--fallback {
  opacity: 0;
  transition: opacity 0.3s;
}
video.hero__video ~ .hero__img--fallback {
  opacity: 0;
}

/* Left panel stays pure midnight; gradient softens the seam into the photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18,17,20,1.0)  0%,
    rgba(18,17,20,1.0) 40%,
    rgba(18,17,20,0.7) 52%,
    rgba(18,17,20,0.15) 65%,
    transparent        75%
  );
  z-index: 1;
}

.hero__content {
  position: absolute;
  bottom: clamp(2.5rem, 7vh, 5rem);
  left: var(--gutter);
  z-index: 2;
  max-width: 520px;
}

.hero__location {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #faf8f5;
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic;
  font-weight: 300;
}

.hero__cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #faf8f5;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s;
}
.hero__cta:hover { border-color: rgba(255,255,255,0.9); }

/* scroll hint removed in split layout */

/* ── INTRO ── */
.intro {
  padding: clamp(4rem, 10vh, 7rem) var(--gutter);
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.intro__line {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  max-width: 780px;
}

/* ── SERVICES ── */
.services {
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
}

.services__header {
  margin-bottom: clamp(3rem, 6vh, 5rem);
  display: flex;
  flex-direction: column;
}
.services__header h2 { max-width: 480px; }

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service {
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
}
a.service--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
a.service--link:hover {
  box-shadow: 0 8px 32px rgba(28,28,30,0.10);
  transform: translateY(-3px);
}
a.service--link:hover .link-arrow {
  letter-spacing: 0.06em;
}

.service__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service:hover .service__img-wrap img { transform: scale(1.03); }

/* Per-card object-position — desktop (4/3 ratio) */
.service__img-wrap img[src*="service-virtual"]   { object-position: center 18%; } /* portrait, face near top */
.service__img-wrap img[src*="service-signature"] { object-position: center top; } /* outfit/fashion shot, no face — show collar/jacket */
.service__img-wrap img[src*="service-occasion"]  { object-position: center 32%; } /* crouching portrait — face near top of card */
.service__img-wrap img[src*="callie-style-portrait"] { object-position: center 25%; } /* rack browse — show hands + garments */
.service__img-wrap img[src*="callie-occasion"]   { object-position: center 30%; } /* seated shoes shot — show lap + heels */
.service__img-wrap img[src*="callie-working"]    { object-position: center 35%; } /* legs/walking editorial — show mid-frame */
.service__img-wrap img[src*="callie-signature-271"] { object-position: center 30%; } /* holding garments up — show action */
.service__img-wrap img[src*="callie-fullexp-285"]   { object-position: center center; } /* overhead heels+magazines — fills frame */
.service__img-wrap img[src*="callie-fullexp-266"]   { object-position: center 30%; } /* garments in arms — show face + clothes */
.service__img-wrap img[src*="callie-occasion-280"]  { object-position: center center; } /* landscape, heels on magazines — natural crop */

.service__body {
  padding: 2rem 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service__body h3 { margin: 0.75rem 0 1rem; }
.service__body h3 { margin: 0.25rem 0 1rem; }
.service__body p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1rem;
}

.service__for {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem !important;
  color: var(--ink) !important;
  line-height: 1.6 !important;
}

.service__list {
  list-style: none;
  margin: 0.75rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service__list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.service__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sand);
}

.service__note {
  font-size: 0.78rem !important;
  color: var(--sand) !important;
  letter-spacing: 0.04em;
  margin-bottom: 0 !important;
}

.service__stripe-cta {
  font-weight: 500 !important;
  color: var(--ink) !important;
  border-bottom-color: var(--ink) !important;
}

/* CTA anchors to the bottom of each card body regardless of content height */
.service__body .link-arrow,
.service__body .service__stripe-cta {
  margin-top: auto;
}


.services__portrait-cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  max-width: 620px;
}
.services__portrait-cta p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
}
.services__portrait-cta a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--linen);
}

.about__img-col {
  overflow: hidden;
  position: relative;
}
.about__img-col img,
.about__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.about__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
}

.about__text-col h2 { margin-bottom: 2rem; }
.about__text-col p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.about__location {
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2.5rem !important;
}

.about__text-col .btn { align-self: flex-start; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: clamp(5rem, 10vh, 8rem) var(--gutter);
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/callie-testimonial-bg.jpg') center center / cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}
.testimonials > * {
  position: relative;
  z-index: 1;
}
.testimonials__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.testimonials__header h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 0.75rem;
}
.testimonials__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.testimonial {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial:first-child { border-top: 1px solid var(--border); }
.testimonial__stars {
  color: var(--sand);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.testimonial__attr {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── PULL QUOTE ── */
.pull-quote {
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pull-quote--video {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 16vh, 12rem) var(--gutter);
  border: none;
}

.pull-quote__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pull-quote__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,17,20,0.82);
}

.pull-quote--video blockquote {
  position: relative;
  z-index: 1;
  color: #faf8f5;
  opacity: 1 !important;
}

.pull-quote--video cite {
  position: relative;
  z-index: 1;
  color: var(--sand);
  opacity: 1 !important;
}

.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.pull-quote cite {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── JOURNAL ── */
.journal {
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
}

.journal__header {
  margin-bottom: clamp(3rem, 6vh, 5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.journal__header h2 { margin: 0; }
.journal__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.journal__view-all {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
}

.journal__label-link {
  text-decoration: none;
  transition: opacity 0.2s;
}
.journal__label-link:hover { opacity: 0.6; }

.journal__heading-link {
  text-decoration: none;
  color: inherit;
}
.journal__heading-link h2 {
  transition: opacity 0.2s;
}
.journal__heading-link:hover h2 {
  opacity: 0.65;
}

.journal__footer {
  margin-top: clamp(3rem, 6vh, 4.5rem);
  text-align: center;
}
.journal__cta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.journal__post {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
}
.journal__post:hover { opacity: 0.85; }
.journal__post:hover .journal__img-wrap img { transform: scale(1.03); }

.journal__img-wrap {
  overflow: hidden;
  background: var(--linen);
  aspect-ratio: 3/4;
}
.journal__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.journal__post h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  color: var(--ink);
}

.journal__excerpt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

/* ── INSTAGRAM ── */
.instagram {
  padding: 0 var(--gutter) clamp(5rem, 12vh, 9rem);
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
}

.instagram__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.instagram__tile {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--linen);
}
.instagram__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
}
.instagram__tile:hover img { transform: scale(1.05); opacity: 0.88; }
.instagram__tile { position: relative; }
.instagram__tile-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: white; font-size: 1.5rem; opacity: 0.85; pointer-events: none; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.instagram__tile--video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.instagram__tile--placeholder { background: var(--warm-white); display: flex; align-items: center; justify-content: center; aspect-ratio: 1; border: 1px solid var(--border); }
.instagram__tile--placeholder span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--midnight);
  color: var(--warm-white);
}

.contact__text {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.contact__text .label { color: rgba(255,255,255,0.4); }
.contact__text h2 { color: var(--warm-white); margin-bottom: 1.5rem; }
.contact__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin-bottom: 1rem;
}
.contact__note {
  font-size: 0.82rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.55) !important;
}

.contact__form {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--warm-white);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255,255,255,0.4);
}
.form-field input.field-error,
.form-field select.field-error,
.form-field textarea.field-error {
  border-color: #c0392b;
}
.field-error-msg {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
  display: block;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field select option { background: var(--midnight); }
.form-field textarea { resize: vertical; }

.contact__form .btn {
  color: var(--warm-white);
  border-color: var(--warm-white);
  background: transparent;
  margin-top: 0.5rem;
}
.contact__form .btn:hover { background: var(--warm-white); color: var(--midnight); border-color: var(--warm-white); }

.form-checks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.form-check input[type=checkbox] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 0.15em;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  accent-color: var(--olive);
  cursor: pointer;
  padding: 0;
}
.form-check:hover { color: rgba(255,255,255,0.9); }

.contact__response-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.contact__thanks {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 4rem var(--gutter);
  color: var(--warm-white);
}
.contact__thanks-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.contact__thanks p:last-child {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.5rem 2rem;
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.06em;
}
.footer__tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  grid-row: span 2;
}
.footer__right a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__right a:hover { color: var(--warm-white); }
.footer__copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  grid-column: 1;
}
.footer__copy a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer__copy a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; gap: 1px; }
  .service__img-wrap { aspect-ratio: 16/9; }
  /* Mobile: 16/9 crop — face positions tuned to actual photos */
  .service__img-wrap img[src*="service-virtual"]   { object-position: center 18%; } /* face at ~20% from top */
  .service__img-wrap img[src*="service-signature"] { object-position: center top; } /* headless outfit shot — show jacket collar */
  .service__img-wrap img[src*="service-occasion"]  { object-position: center 32%; } /* crouching portrait — face near top of card */
  .service__img-wrap img[src*="callie-style-portrait"] { object-position: center 25%; }
  .service__img-wrap img[src*="callie-occasion"]   { object-position: center 30%; }
  .service__img-wrap img[src*="callie-working"]    { object-position: center 35%; }
  .service__img-wrap img[src*="callie-signature-271"] { object-position: center 30%; }
  .service__img-wrap img[src*="callie-occasion-280"]  { object-position: center center; }
  .about { grid-template-columns: 1fr; }
  .about__img-col { height: 55vw; min-height: 320px; }
  .about__img-col img { object-position: center bottom; } /* couch photo — Callie is lower in frame; bottom shows her, not ceiling */
  .contact { grid-template-columns: 1fr; }
  .contact__text { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .instagram__tile:nth-child(n+4) { display: none; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(2.6rem, 8vw, 3.5rem); }
  .hero__content { max-width: 92%; bottom: 2rem; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.5rem; }
  .nav { padding: 0 1rem; }
  .nav__links { display: none; }
  .nav__logo { font-size: 0.95rem; }
  .nav__cta { padding: 0.75rem 1.5rem; font-size: 0.62rem; letter-spacing: 0.12em; min-height: 44px; display: inline-flex; align-items: center; }
  /* hero mobile: stack photo behind, full width */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    height: auto;
    max-height: none;
    margin-top: var(--nav-h);
  }
  .hero__img { max-width: 100%; opacity: 0.92; object-position: center 35%; }
  .hero__overlay {
    /* Mobile: gradient bottom-up — face visible at top, text readable at bottom */
    background: linear-gradient(
      to top,
      var(--midnight) 0%,
      rgba(18,17,20,0.75) 35%,
      rgba(18,17,20,0.15) 65%,
      transparent 100%
    );
  }
  .hero__content { max-width: 85%; bottom: 2.5rem; }
  .hero__cta {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 44px;
  }
  .services__header { margin-bottom: 2rem; }
  .service__body { padding: 1.5rem 1rem; }
  .journal__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form input,
  .contact__form textarea,
  .contact__form select { padding: 0.75rem 1rem; }
  .contact { padding: 4rem var(--gutter); }
  .footer { grid-template-columns: 1fr; padding: 3rem var(--gutter); }
  .footer__right { align-items: flex-start; margin-top: 1rem; grid-row: auto; }
  .instagram__tile { aspect-ratio: 1; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .instagram__tile:nth-child(n+3) { display: none; }
}
