/* ============================================================
   The Things I Love — Curated Boutique
   New City, NY · 170 S. Main St.
   ============================================================ */

:root {
  color-scheme: light;
  --cream: #fff8ed;
  --ivory: #f8efe1;
  --soft-ivory: #fff4df;
  --gold: #c3923e;
  --gold-light: #f4cf75;
  --bronze: #8a5d26;
  --deep-gold: #9a6424;
  --espresso: #1d1410;
  --ink: #14100e;
  --muted: rgba(20, 16, 14, .82);
  --line: rgba(138, 93, 38, .22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #f8efe1;
  overflow-x: hidden;
}
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: Montserrat, system-ui, sans-serif;
}
main { background: var(--ivory); }
a { text-decoration: none; color: inherit; }

/* ---------- Announcement bar + header ---------- */
.announcement {
  background: linear-gradient(180deg, #110d0b, #251913);
  color: #fffaf2;
  text-align: center;
  padding: 13px 18px;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  line-height: 1.55;
}
.announcement strong { color: #d2a65d; }
.announcement-prefix {
  display: inline;
}
@media (max-width: 760px) {
  .announcement-prefix { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 237, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1280px;
  margin: auto;
  min-height: 104px;
  padding: 18px clamp(22px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}
.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: .92;
  letter-spacing: .015em;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.brand-mini .brand-icon {
  display: block;
  width: clamp(38px, 4.4vw, 56px);
  height: auto;
  flex-shrink: 0;
  transition: transform .35s ease;
}
.brand-mini:hover .brand-icon {
  transform: rotate(-4deg) scale(1.05);
}
.brand-mini .brand-text {
  display: flex;
  flex-direction: column;
}
.brand-mini .brand-name {
  display: block;
}
.brand-mini small {
  display: block;
  margin-top: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 800;
  line-height: 1.5;
  max-width: 28em;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 10px 14px;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  border-radius: 4px;
  font-family: inherit;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 800;
}
.nav-links a { position: relative; }
.nav-links a:hover,
.nav-links a.active { color: var(--bronze); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--bronze);
}

/* ---------- Hero (split layout) ---------- */
.wordmark-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 40%, rgba(244, 207, 117, .15), transparent 50%),
    linear-gradient(180deg, #fff8ed 0%, #f9eed7 60%, #fff4df 100%);
}
.wordmark-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 90px) clamp(26px, 4vw, 56px);
}
.wordmark-hero-left {
  position: relative;
  text-align: center;
  z-index: 2;
}
.wordmark-hero-left::before,
.wordmark-hero-left::after {
  content: "✦";
  position: absolute;
  color: rgba(195, 146, 62, .42);
  font-size: 14px;
  pointer-events: none;
  animation: luxuryTwinkle 5.8s ease-in-out infinite;
}
.wordmark-hero-left::before { left: 4%; top: 22%; }
.wordmark-hero-left::after { right: 4%; top: 78%; animation-delay: 2.4s; }

.wordmark-image {
  display: block;
  width: 100%;
  max-width: 580px;
  height: auto;
  margin: 0 auto clamp(24px, 3vw, 36px);
}

.wordmark-hero-right {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 32px 64px rgba(60, 35, 11, .22),
    0 0 0 1px rgba(138, 93, 38, .12);
}
.wordmark-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 12s ease-out;
}
.wordmark-hero-right:hover img {
  transform: scale(1.04);
}
.wordmark-hero-right::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 248, 237, .35);
  pointer-events: none;
  z-index: 2;
}

.trust-line {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
  opacity: .85;
}

/* ---------- Hero entrance animations ---------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.wordmark-hero-left > * {
  opacity: 0;
  animation: heroFadeUp .9s ease both;
}
.wordmark-hero-left > *:nth-child(2) { animation-delay: 0.10s; }  /* wordmark image */
.wordmark-hero-left > *:nth-child(3) { animation-delay: 0.40s; }  /* hero copy */
.wordmark-hero-left > *:nth-child(4) { animation-delay: 0.55s; }  /* buttons */
.wordmark-hero-left > *:nth-child(5) { animation-delay: 0.70s; }  /* trust line */
.wordmark-hero-right {
  opacity: 0;
  animation: heroFadeIn 1.4s ease 0.25s both;
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--bronze);
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  z-index: 3;
  animation: heroFadeIn 1s ease 1.2s both, scrollCueBob 2.6s ease-in-out 2.4s infinite;
}
.scroll-cue:hover { color: var(--ink); }
.scroll-cue svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes scrollCueBob {
  0%, 100% { transform: translate(-50%, 0); opacity: .82; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}
@media (max-width: 900px) {
  .scroll-cue { display: none; }
}

/* Visually-hidden but accessible to screen readers (the wordmark image contains the H1 text) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 900;
  margin: 14px 0 22px;
}
.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  margin: 4px 0 18px;
  color: var(--ink);
}
.hero-headline em { color: var(--bronze); font-style: italic; }
.hero-copy {
  max-width: 460px;
  margin: 0 auto 28px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(20, 16, 14, .76);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 17px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 900;
  transition: .35s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(90deg, #9e641d, #bd8330, #8c551a);
  color: white;
  box-shadow: 0 18px 38px rgba(116, 70, 18, .22);
}
.btn-outline {
  background: rgba(255, 248, 237, .50);
  border: 1px solid rgba(138, 93, 38, .58);
  color: var(--ink);
}
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }

/* ---------- Section layouts ---------- */
.collections,
.visit-section,
.content-section,
.shop-intro,
.process-section,
.editorial-section,
.story-section,
.values-section,
.contact-section,
.feature-band,
.service-preview {
  padding: 90px 24px;
}
.collections,
.content-section,
.editorial-section,
.values-section { background: #fff8ed; }

.section-heading,
.page-hero,
.editorial-section {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.page-hero {
  padding: 130px 24px;
  background: linear-gradient(180deg, #f7ead9, #fff6e8);
}

.section-heading p,
.page-hero .eyebrow,
.visit-section p,
.editorial-section .eyebrow,
.shop-intro .eyebrow,
.feature-band .eyebrow,
.content-grid .eyebrow {
  color: var(--bronze);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.section-heading h2,
.page-hero h1,
.visit-section h2,
.content-grid h2,
.shop-intro h2,
.feature-band h2,
.editorial-section h2,
.story-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin: 18px 0;
  font-weight: 500;
}
.page-hero p:not(.eyebrow),
.editorial-section p {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--muted);
  line-height: 1.45;
}
.section-heading { margin-bottom: 44px; }

/* ---------- Collection grids ---------- */
.collection-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.collection-grid.large { grid-template-columns: repeat(2, 1fr); }
.collection-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffaf3, #f5e7d1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: .35s ease;
  scroll-margin-top: 140px;
}
.collection-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(86, 54, 17, .12);
}
.collection-card span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  margin-bottom: auto;
}
.collection-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 12px;
}
.collection-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Collection card variant with image */
.collection-card.has-media {
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  justify-content: stretch;
  min-height: 0;
}
.collection-card.has-media .card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f4e4c8, #e8d2a3);
  overflow: hidden;
}
.collection-card.has-media .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease-out;
}
.collection-card.has-media:hover .card-media img {
  transform: scale(1.04);
}
.collection-card.has-media .card-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
}
.collection-card.has-media .card-body span {
  margin-bottom: 8px;
}
.collection-card.has-media .card-body h3 {
  font-size: 30px;
}

/* ---------- Two-column content sections ---------- */
.feature-band,
.story-section,
.shop-intro,
.content-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-band p,
.shop-intro p,
.content-grid p,
.story-section p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ---------- Personal Shopping CTA section ---------- */
.personal-shopping {
  background: var(--cream);
  padding: 90px 24px;
}
.personal-shopping-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.personal-shopping-photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(86, 54, 17, .18);
}
.personal-shopping-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.personal-shopping-copy h2 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin-bottom: 22px;
  color: var(--ink);
}
.personal-shopping-copy h2 em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 400;
}
.personal-shopping-copy p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
}

/* ---------- Card-based sections ---------- */
.service-preview,
.contact-section,
.values-section,
.process-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card,
.contact-card,
.value-card,
.process-grid div {
  background: linear-gradient(180deg, #fffaf3, #f5e7d1);
  border: 1px solid var(--line);
  padding: 40px;
}
.service-card h2,
.contact-card h2,
.value-card h3,
.process-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  margin: 16px 0;
}
.service-card p,
.contact-card p,
.value-card p,
.process-grid p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
}
.process-grid { grid-template-columns: repeat(3, 1fr); }
.process-grid span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}

/* ---------- Visit + contact ---------- */
.visit-section {
  text-align: center;
  background: linear-gradient(180deg, #f5e7d1, #fff8ed);
}
.visit-section .btn,
.editorial-section .btn { margin-top: 28px; }
.contact-line {
  letter-spacing: normal;
  text-transform: none;
  font-size: 18px;
  color: var(--muted);
}
.contact-card .btn { margin-top: 20px; }
.contact-card a[href^="tel:"],
.contact-card a[href^="mailto:"],
.contact-card a[href^="https://www.instagram"] {
  color: var(--bronze);
  text-decoration: underline;
  text-decoration-color: rgba(138, 93, 38, .35);
  text-underline-offset: 3px;
  transition: color .25s ease, text-decoration-color .25s ease;
}
.contact-card a[href^="tel:"]:hover,
.contact-card a[href^="mailto:"]:hover,
.contact-card a[href^="https://www.instagram"]:hover {
  color: var(--ink);
  text-decoration-color: var(--bronze);
}
.hours-list {
  list-style: none;
  margin: 12px 0 22px;
}
.hours-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding: 8px 0;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li strong { color: var(--ink); font-weight: 700; }

/* ---------- Story quote (about page) ---------- */
.story-quote {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: clamp(76px, 9vw, 130px) 24px;
}
.story-quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .96;
  font-weight: 500;
  max-width: 980px;
  margin: 0 auto 22px;
}
.story-quote cite {
  color: #d2a65d;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

/* ---------- Page hero variants ---------- */
.expanded-hero {
  min-height: 460px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.value-card h3 { text-transform: none; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(180deg, #fff8ed, #f5e7d1);
  text-align: center;
  padding: 90px 24px;
  border-top: 1px solid var(--line);
}
.newsletter-inner { max-width: 620px; margin: 0 auto; }
.newsletter h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  margin: 14px 0;
  font-weight: 500;
}
.newsletter p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: white;
  font-family: inherit;
  font-size: 14px;
  border-radius: 4px;
  color: var(--ink);
}
.newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

/* ---------- Contact form ---------- */
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin: 24px auto 0;
  text-align: left;
}
.contact-form-section {
  padding: 90px 24px;
  background: #fff8ed;
}
.contact-form-section .section-heading { margin-bottom: 24px; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--bronze);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: white;
  font-family: inherit;
  font-size: 15px;
  border-radius: 4px;
  color: var(--ink);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}
.contact-form .btn { justify-self: start; margin-top: 6px; }

/* ---------- Footer ---------- */
.footer {
  background: #130e0b;
  color: #fff8ed;
  padding: 56px 24px 30px;
}
.footer-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}
.footer h4 {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
  color: #d2a65d;
}
.footer p,
.footer ul li {
  line-height: 1.7;
  color: rgba(255, 248, 237, .82);
  font-size: 14px;
}
.footer ul { list-style: none; }
.footer a:hover { color: #d2a65d; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(210, 166, 93, .35);
  border-radius: 999px;
  color: #d2a65d;
  transition: .25s ease;
}
.footer-social a:hover {
  background: #d2a65d;
  color: #130e0b;
  border-color: #d2a65d;
}
.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 34px;
  color: rgba(255, 248, 237, .55);
}
.footer-bottom a { color: rgba(255, 248, 237, .82); }

/* ---------- Animations ---------- */
@keyframes luxuryTwinkle {
  0%, 100% { opacity: .12; transform: translateY(8px) scale(.72) rotate(0deg); }
  45% { opacity: .88; transform: translateY(0) scale(1) rotate(18deg); }
  70% { opacity: .34; transform: translateY(-8px) scale(.82) rotate(0deg); }
}

/* ---------- Responsive ---------- */
@media (min-width: 901px) and (max-height: 790px) {
  .announcement { padding: 9px 18px; font-size: 10px; }
  .nav { min-height: 74px; padding-top: 10px; padding-bottom: 10px; }
  .brand-mini { font-size: 32px; }
  .brand-mini small { margin-top: 6px; font-size: 8px; }
  .wordmark-hero-grid { padding-top: 28px; padding-bottom: 36px; }
  .wordmark-image { max-width: 460px; margin-bottom: 18px; }
  .hero-copy { font-size: 16px; line-height: 1.45; margin-bottom: 18px; }
  .btn { min-height: 46px; padding: 13px 22px; }
}

@media (max-width: 900px) {
  .nav { min-height: 80px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 248, 237, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 14px 28px;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active::after { display: none; }

  /* Stack the split hero vertically */
  .wordmark-hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 44px);
    padding: clamp(24px, 5vw, 50px) 26px clamp(40px, 6vw, 60px);
  }
  .wordmark-hero-right {
    order: 2;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }
  .wordmark-hero-left { order: 1; }

  .collection-grid,
  .collection-grid.large,
  .feature-band,
  .story-section,
  .shop-intro,
  .content-grid,
  .service-preview,
  .contact-section,
  .values-section,
  .process-grid,
  .personal-shopping-inner,
  .footer-grid { grid-template-columns: 1fr; }

  /* When two-column grids stack to one column on mobile, kill the desktop centering
     and tighten the gap so the heading hugs its body copy */
  .content-grid,
  .feature-band,
  .story-section,
  .shop-intro {
    align-items: start;
    gap: 24px;
  }
  .personal-shopping-inner {
    gap: 32px;
  }
  .personal-shopping-photo {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .announcement { font-size: 10px; letter-spacing: .14em; padding: 10px 12px; }
  .brand-mini { font-size: 26px; line-height: .9; gap: 10px; }
  .brand-mini .brand-icon { width: 36px; }
  .brand-mini small { font-size: 8px; letter-spacing: .2em; margin-top: 6px; line-height: 1.6; }

  .hero-copy { font-size: 17px; max-width: 355px; margin-bottom: 24px; }
  .btn { width: 100%; max-width: 350px; }
  .hero-actions { flex-direction: column; align-items: center; }

  .page-hero { padding: 90px 26px; }
  .expanded-hero { min-height: 420px; }
  .collections,
  .visit-section,
  .content-section,
  .shop-intro,
  .process-section,
  .editorial-section,
  .story-section,
  .values-section,
  .contact-section,
  .feature-band,
  .service-preview,
  .newsletter,
  .personal-shopping,
  .contact-form-section { padding: 70px 26px; }
}

@media (max-width: 480px) {
  .announcement { font-size: 9px; letter-spacing: .12em; padding: 9px 8px; }
  .section-heading h2,
  .page-hero h1,
  .visit-section h2,
  .content-grid h2,
  .shop-intro h2,
  .feature-band h2,
  .editorial-section h2,
  .story-section h2 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .wordmark-hero-left > *,
  .wordmark-hero-right,
  .scroll-cue { opacity: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger child reveals when a container is the trigger */
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   MOBILE SPACING FIX — Reduce excessive vertical gaps on mobile.
   Append-only. Site-wide for screens ≤ 760px.
   ============================================================ */

@media (max-width: 760px) {
  /* Hero on every page: tighter top + bottom padding */
  .page-hero {
    padding: 56px 22px 32px !important;
  }
  .page-hero.expanded-hero {
    min-height: 0 !important;
    padding: 56px 22px 32px !important;
  }
  /* Wordmark hero (home page) */
  .wordmark-hero-grid {
    padding: 32px 22px 36px !important;
  }

  /* All major content sections: trim from 70px to 44px vertical */
  .collections,
  .visit-section,
  .content-section,
  .shop-intro,
  .process-section,
  .editorial-section,
  .editorial-break,
  .story-section,
  .values-section,
  .values-section-wrap,
  .contact-section,
  .feature-band,
  .service-preview,
  .newsletter,
  .personal-shopping,
  .contact-form-section {
    padding: 44px 22px !important;
  }

  /* Hero typography: limit the H1 on narrow screens (was clamping to ~58px) */
  .page-hero h1 {
    font-size: clamp(32px, 8vw, 44px) !important;
    line-height: 1.08 !important;
  }
  .page-hero p:not(.eyebrow) {
    font-size: 17px !important;
    line-height: 1.5 !important;
  }

  /* Editorial-section / editorial-break headings: were rendering at desktop size */
  .editorial-section h2,
  .editorial-break h2 {
    font-size: 28px !important;
    line-height: 1.18 !important;
  }
  .editorial-section p:not(.eyebrow),
  .editorial-break p:not(.eyebrow) {
    font-size: 17px !important;
    line-height: 1.55 !important;
  }

  /* Hero images sitting in their own <figure> below a hero shouldn't add
     yet another 60px gap. */
  main > section > figure {
    margin: 0 auto !important;
  }
  main > section[style*="padding"] {
    padding-bottom: 24px !important;
  }
}

/* .editorial-break base typography (desktop) — needed because it's a class
   I introduced for the restructured shop page that doesn't exist elsewhere. */
.editorial-break {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 90px 24px;
}
.editorial-break .eyebrow {
  color: var(--bronze);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.editorial-break h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  margin: 18px 0;
  font-weight: 500;
}
.editorial-break p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--muted);
  line-height: 1.55;
}
