/*  HOME HERO  */
.home-hero {
  height: 100vh;
  background: var(--terracotta);
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
.home-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--sp-xl)) var(--sp-xl) var(--sp-xl) var(--content-pad);
  position: relative; z-index: 2;
  max-width: 55%;
}
.home-hero__bg-letter {
  position: absolute;
  font-family: var(--playfair);
  font-size: clamp(300px, 40vw, 560px);
  font-weight: 900;
  color: var(--turmeric);
  opacity: .08;
  line-height: 1;
  bottom: -60px; left: -40px;
  pointer-events: none; user-select: none;
  z-index: 1;
}
.home-hero__kicker {
  font-family: var(--mont);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--soft-ivory);
  text-shadow: 0 1px 2px rgba(44, 44, 44, .2);
  margin-bottom: var(--sp-md);
  display: flex; align-items: center; gap: 14px;
}
.home-hero__kicker::before {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: rgba(253, 246, 227, .9);
  opacity: .95;
}
.home-hero__title {
  font-family: var(--playfair);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--soft-ivory);
  margin-bottom: var(--sp-md);
}
.home-hero__title em {
  display: block;
  font-style: italic;
  color: var(--turmeric);
}
.home-hero__sub {
  font-family: var(--lora);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-style: italic;
  color: rgba(253,246,227,.7);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: var(--sp-md);
}
.home-hero__pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}
.hero-pill {
  font-family: var(--mont);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,246,227,.7);
  border: 1px solid rgba(253,246,227,.2);
  padding: 6px 14px;
}
.home-hero__ctas { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }
.home-hero__right {
  position: absolute; inset: 0;
  overflow: hidden;
  background: rgba(0,0,0,.12);
  z-index: 1;
}
.home-hero__right img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.home-hero__right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--terracotta) 30%, transparent 70%);
  z-index: 2; pointer-events: none;
}
.home-hero__right::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  z-index: 2; pointer-events: none;
}
.home-hero__right-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.home-hero__right-placeholder-icon { font-size: 4rem; opacity: .25; }
.home-hero__right-placeholder-label {
  font-family: var(--mont); font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(253,246,227,.25); text-align: center; line-height: 1.8;
}

/*  PROMISE STRIP  */
.promise-strip {
  background: var(--charcoal);
  padding: var(--sp-lg) var(--content-pad);
}
.promise-strip__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.promise-item {
  padding: var(--sp-sm) var(--sp-md);
  border-right: 1px solid rgba(253,246,227,.07);
}
.promise-item:last-child { border-right: none; }
.promise-item__icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.promise-item__label {
  font-family: var(--mont);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--turmeric); margin-bottom: 6px; display: block;
}
.promise-item__desc {
  font-family: var(--lato);
  font-size: .82rem;
  color: rgba(253,246,227,.4);
  line-height: 1.55;
}

/*  CATEGORIES  */
.categories {
  background: var(--soft-ivory);
  padding: var(--sp-xl) var(--content-pad);
}
.categories__inner { max-width: var(--max-w); margin: 0 auto; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}
.cat-card {
  background: var(--warm-cream);
  border-top: 4px solid var(--terracotta);
  padding: var(--sp-md) var(--sp-sm);
  text-align: center; text-decoration: none; display: block;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}
.cat-card:nth-child(2) { border-top-color: var(--turmeric); }
.cat-card:nth-child(3) { border-top-color: var(--sage); }
.cat-card:nth-child(4) { border-top-color: var(--charcoal); }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); background: var(--soft-ivory); }
.cat-card__icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.cat-card__name {
  font-family: var(--lora); font-size: 1rem; font-weight: 700;
  color: var(--terracotta); margin-bottom: 8px; display: block;
}
.cat-card:nth-child(2) .cat-card__name { color: #a37008; }
.cat-card:nth-child(3) .cat-card__name { color: #5a7e5e; }
.cat-card:nth-child(4) .cat-card__name { color: var(--charcoal); }
.cat-card__desc {
  font-family: var(--mont); font-size: .6rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); line-height: 1.7;
}

/*  FEATURED RECIPES  */
.featured {
  background: var(--warm-cream);
  padding: var(--sp-xl) var(--content-pad);
}
.featured__inner { max-width: var(--max-w); margin: 0 auto; }
.featured__header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-lg);
  gap: var(--sp-md); flex-wrap: wrap;
}
.featured__view-all {
  font-family: var(--mont); font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--terracotta); text-decoration: none;
  opacity: .7; transition: opacity var(--trans);
}
.featured__view-all:hover { opacity: 1; }
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.r-card {
  background: var(--soft-ivory);
  display: block; text-decoration: none;
  transition: transform var(--trans), box-shadow var(--trans);
  overflow: hidden;
}
.r-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.r-card__photo {
  width: 100%; aspect-ratio: 4 / 3;
  background: var(--warm-cream); overflow: hidden; position: relative;
}
.r-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.r-card:hover .r-card__photo img { transform: scale(1.04); }
.r-card__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; background: var(--warm-cream);
  font-family: var(--mont); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); opacity: .5;
}
.r-card__photo-placeholder span { font-size: 2rem; }
.r-card__band { height: 4px; background: var(--terracotta); }
.r-card__body { padding: var(--sp-sm) var(--sp-md) var(--sp-md); }
.r-card__cat {
  font-family: var(--mont); font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 8px; display: block;
}
.r-card__title {
  font-family: var(--lora); font-size: 1.1rem; font-weight: 700;
  color: var(--terracotta); line-height: 1.3;
  margin-bottom: 8px; display: block;
}
.r-card__meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--mont); font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--charcoal); opacity: .4;
}
.r-card__stat-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--warm-cream);
  font-family: var(--mont); font-size: .58rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--terracotta);
  padding: 4px 10px; margin-top: 10px;
}

/*  ABOUT TEASER  */
.about-teaser {
  background: var(--soft-ivory);
  padding: var(--sp-xl) var(--content-pad);
}
.about-teaser__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-xl);
  align-items: center;
}
.about-teaser__portrait {
  width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden; background: var(--warm-cream); position: relative;
}
.about-teaser__portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.about-teaser__portrait::after {
  content: ''; position: absolute; inset: 0;
  border: 3px solid var(--turmeric);
  pointer-events: none; mix-blend-mode: multiply; opacity: .3;
}
.about-teaser__kicker {
  font-family: var(--mont); font-size: .68rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--sage); margin-bottom: var(--sp-sm);
}
.about-teaser__title {
  font-family: var(--playfair);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; color: var(--terracotta);
  line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: var(--sp-sm);
}
.about-teaser__body {
  font-family: var(--lora); font-size: 1rem; font-style: italic;
  color: var(--charcoal); opacity: .72;
  line-height: 1.75; margin-bottom: var(--sp-md);
}
.about-teaser__sig {
  font-family: var(--playfair); font-size: 1.4rem; font-style: italic;
  color: var(--terracotta); display: block; margin-bottom: var(--sp-md);
}

/*  FIND ME STRIP  */
.find-me {
  background: var(--terracotta);
  padding: var(--sp-lg) var(--content-pad);
  text-align: center; position: relative; overflow: hidden;
}
.find-me__inner { position: relative; z-index: 2; }
.find-me__title {
  font-family: var(--playfair); font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--soft-ivory); margin-bottom: 8px;
}
.find-me__sub {
  font-family: var(--lora); font-style: italic; font-size: .95rem;
  color: rgba(253,246,227,.6); margin-bottom: var(--sp-md);
}
.find-me__links {
  display: flex; align-items: center;
  justify-content: center; gap: var(--sp-md); flex-wrap: wrap;
}
.find-me__link {
  font-family: var(--mont); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--soft-ivory); text-decoration: none;
  opacity: .55; transition: opacity var(--trans);
}
.find-me__link:hover { opacity: 1; }
.find-me__link-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--turmeric); opacity: .4;
}


/* ─── EXTRACTED from inline styles (quick task 260427-11l) ─── */

/* Scroll margin for smooth single-page navigation (was in index.html <style> block) */
section { scroll-margin-top: var(--nav-h); }

/* Hero ghost/outline button on dark terracotta panel */
.btn--outline--hero {
  border-color: rgba(253,246,227,.85);
  color: var(--soft-ivory);
  background: rgba(0,0,0,.08);
}
.btn--outline--hero:hover {
  background: var(--soft-ivory);
  color: var(--terracotta);
}

/* About section: Rimpy signature block spacing */
.about-body .t-signature { margin-top: var(--sp-lg); display: block; }

/* Recipes panel: container above decorative background layer */
#recipes .container { position: relative; z-index: 2; }

/* Recipes panel: explicit contrast contract (avoid generic typography overrides) */
#recipes .t-section-label-text.t-section-label-text--light {
  color: var(--soft-ivory);
  border-color: rgba(253,246,227,.35);
}
#recipes .t-chapter-heading {
  color: var(--soft-ivory);
  margin-bottom: .75rem;
}
#recipes .t-story-intro {
  color: rgba(253,246,227,.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}
#recipes .home-hero__ctas { justify-content: center; }

/* Contact card: heading size */
.contact-card-box .t-chapter-heading { font-size: 1.8rem; }

/* Contact card: full-width primary CTA buttons */
.contact-card-box .btn--primary.btn--full { padding: var(--sp-sm); font-size: 1rem; }

/*  RESPONSIVE  */
@media (max-width: 1100px) {
  .home-hero {
    height: auto;
    min-height: 100vh;
  }
  .home-hero__left {
    max-width: 60%;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser__inner { grid-template-columns: 1fr; }
  .about-teaser__portrait { max-width: 340px; }
  .promise-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .promise-item { border-right: none; border-bottom: 1px solid rgba(253,246,227,.07); }
}
@media (max-width: 800px) {
  .home-hero { display: flex; flex-direction: column; height: auto; min-height: auto; }
  .home-hero__right {
    order: 1;
    position: relative; inset: auto;
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: calc(100svh - var(--nav-h));
    height: calc(100dvh - var(--nav-h));
    min-height: calc(100svh - var(--nav-h));
    z-index: auto;
  }
  .home-hero__right-frame {
    width: 100%;
    height: 100%;
  }
  .home-hero__left {
    order: 2;
    max-width: 100%;
    justify-content: flex-start;
    align-items: center; text-align: center;
    padding: var(--sp-xl) var(--content-pad) var(--sp-xl);
  }
  .home-hero__kicker { justify-content: center; }
  .home-hero__ctas { justify-content: center; }
  .home-hero__right::before { display: none; }
  .home-hero__right::after { display: none; }
  .recipe-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .home-hero__ctas { flex-direction: column; }
  .promise-strip__inner { grid-template-columns: 1fr; }
  .find-me__links { flex-direction: column; gap: var(--sp-sm); }
  .find-me__link-sep { display: none; }
}
/*  ABOUT HERO  */
.about-hero {
  background: var(--terracotta);
  padding: calc(var(--nav-h) + var(--sp-xl)) var(--content-pad) var(--sp-xl);
  position: relative; overflow: hidden; text-align: center;
}
.about-hero__bg {
  position: absolute; font-family: var(--playfair);
  font-size: clamp(180px, 26vw, 380px); font-weight: 900;
  color: var(--turmeric); opacity: .12; line-height: 1;
  bottom: -30px; right: -20px;
  pointer-events: none; user-select: none;
}
.about-hero__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.about-hero__kicker {
  font-family: var(--mont); font-size: .68rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--turmeric);
  margin-bottom: var(--sp-sm);
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.about-hero__kicker::before, .about-hero__kicker::after {
  content: ''; display: block; width: 28px; height: 1.5px;
  background: var(--turmeric); opacity: .6;
}
.about-hero__title {
  font-family: var(--playfair);
  font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900;
  color: var(--soft-ivory); line-height: 1.0; letter-spacing: -.025em;
  margin-bottom: var(--sp-sm);
}
.about-hero__title em { font-style: italic; color: var(--turmeric); }
.about-hero__sub {
  font-family: var(--lora); font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-style: italic; color: rgba(253,246,227,.65); line-height: 1.75;
}

/*  GRID  */
.about-body { background: var(--soft-ivory); padding: var(--sp-xl) var(--content-pad); }
.about-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 300px 1fr;
  gap: var(--sp-xl); align-items: start;
}
.about-portrait-col { position: sticky; top: calc(var(--nav-h) + 24px); }
.about-portrait {
  width: 100%; aspect-ratio: 3 / 4;
  overflow: hidden; position: relative; background: var(--warm-cream);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-portrait::after {
  content: ''; position: absolute; inset: 0;
  border: 3px solid var(--turmeric);
  pointer-events: none; mix-blend-mode: multiply; opacity: .35;
}
.about-portrait-name {
  font-family: var(--playfair); font-size: 1.5rem;
  font-style: italic; color: var(--terracotta);
  display: block; margin-top: var(--sp-sm);
}
.about-portrait-role {
  font-family: var(--mont); font-size: .62rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-top: 6px; display: block;
}
.about-social {
  display: flex; gap: 10px; margin-top: var(--sp-sm); flex-wrap: wrap;
}
.about-social a {
  font-family: var(--mont); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; opacity: .4;
  transition: opacity var(--trans), color var(--trans);
}
.about-social a:hover { opacity: 1; color: var(--terracotta); }

/*  STORY  */
.letter-open {
  border-left: 4px solid var(--terracotta);
  padding-left: var(--sp-md); margin-bottom: var(--sp-lg);
}
.letter-open__quote {
  font-family: var(--lora); font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700; color: var(--terracotta); line-height: 1.25; margin-bottom: 10px;
}
.letter-open__sub {
  font-family: var(--lora); font-size: 1rem; font-style: italic;
  color: var(--charcoal); opacity: .6; line-height: 1.65;
}
.story-pull {
  background: var(--warm-cream);
  border-top: 4px solid var(--turmeric);
  padding: var(--sp-md) var(--sp-lg); margin: var(--sp-lg) 0;
}
.story-pull__text {
  font-family: var(--playfair); font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-style: italic; font-weight: 700; color: var(--charcoal); line-height: 1.45;
}
.story-pull__text em { color: var(--terracotta); font-style: normal; }

/*  WHAT I MAKE  */
.what-i-make {
  background: var(--warm-cream); padding: var(--sp-xl) var(--content-pad);
}
.what-i-make__inner { max-width: var(--max-w); margin: 0 auto; }
.what-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md); margin-top: var(--sp-lg);
}
.what-card {
  background: var(--soft-ivory); border-top: 4px solid var(--terracotta);
  padding: var(--sp-md);
  transition: transform var(--trans), box-shadow var(--trans);
}
.what-card:nth-child(2) { border-top-color: var(--turmeric); }
.what-card:nth-child(3) { border-top-color: var(--sage); }
.what-card:nth-child(4) { border-top-color: var(--charcoal); }
.what-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.what-card__icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.what-card__title {
  font-family: var(--lora); font-size: 1rem; font-weight: 700;
  color: var(--terracotta); margin-bottom: 8px;
}
.what-card:nth-child(2) .what-card__title { color: #a37008; }
.what-card:nth-child(3) .what-card__title { color: #5a7e5e; }
.what-card:nth-child(4) .what-card__title { color: var(--charcoal); }
.what-card__desc {
  font-family: var(--lato); font-size: .88rem;
  color: var(--charcoal); line-height: 1.7; opacity: .7;
}

/*  CTA  */
.about-cta {
  background: var(--terracotta); padding: var(--sp-lg) var(--content-pad);
  text-align: center; position: relative; overflow: hidden;
}
.about-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.about-cta__inner { position: relative; z-index: 2; }
.about-cta__title {
  font-family: var(--playfair); font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--soft-ivory); margin-bottom: var(--sp-sm); line-height: 1.1;
}
.about-cta__title em { font-style: italic; color: var(--turmeric); }
.about-cta__sub {
  font-family: var(--lora); font-style: italic; font-size: 1rem;
  color: rgba(253,246,227,.6); margin-bottom: var(--sp-md);
}
.about-cta__btns { display: flex; justify-content: center; gap: var(--sp-sm); flex-wrap: wrap; }

/*  DISCLAIMER  */
.disclaimer-note {
  background: var(--warm-cream);
  padding: var(--sp-md) var(--content-pad);
  border-top: 1px solid rgba(212,144,10,.15);
}
.disclaimer-note__inner {
  max-width: var(--max-w); margin: 0 auto;
  font-family: var(--lato); font-size: .78rem;
  color: var(--charcoal); opacity: .4; line-height: 1.65;
  text-align: center;
}

/*  RESPONSIVE  */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait-col { position: static; max-width: 260px; margin: 0 auto; text-align: center; }
  .about-social { justify-content: center; }
  .what-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .what-grid { grid-template-columns: 1fr; }
  .about-cta__btns { flex-direction: column; align-items: center; }
}
.resource-card {
  background: var(--warm-cream);
  padding: 40px 24px;
  text-align: center;
  height: 100%;
  border-top: 4px solid var(--terracotta);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
/* Color cycle for cards - matching category pattern */
.resource-card:nth-child(2) { border-top-color: var(--turmeric); }
.resource-card:nth-child(3) { border-top-color: var(--sage); }
.resource-card:nth-child(4) { border-top-color: var(--terracotta); }

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.resource-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--warm-cream);
  overflow: hidden;
  margin-bottom: 24px;
}
.resource-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}
.resource-card:hover .resource-card__img {
  transform: scale(1.08);
}
.resource-card__title {
  font-family: var(--lora);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.resource-card__desc {
  font-family: var(--lato);
  font-size: 0.88rem;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.contact-card-box {
  background: var(--warm-cream);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .contact-card-box { padding: 30px; }
}

/*  CONTACT SECTION  */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info-list { display: flex; flex-direction: column; }
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/*  CONTACT FORM  */
.contact-form {
  display: grid;
  gap: 20px;
  background: var(--soft-ivory);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--mont);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}
.form-input {
  font-family: var(--lato);
  font-size: 0.95rem;
  padding: 14px 18px;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--charcoal);
  transition: border-color var(--trans);
}
.form-input:focus {
  outline: none;
  border-color: var(--terracotta);
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Email Image Fix */
.email-link-img {
  max-height: 1.1rem; /* Matches text height */
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.social-button-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn--full {
  width: 100%;
  justify-content: flex-start;
  padding-left: 24px;
}

/*  FOOTER  */
.site-footer {
  background: var(--charcoal);
  padding: 80px var(--content-pad) 40px;
  color: var(--soft-ivory);
}
.footer__grid {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 40px;
  margin-bottom: 60px;
}
.footer__brand-col { max-width: 400px; }
.footer__brand-name {
  font-family: var(--playfair); font-size: 1.8rem; font-weight: 900;
  color: var(--turmeric); margin-bottom: 12px;
}
.footer__tagline {
  font-family: var(--lora); font-style: italic; font-size: 1rem;
  color: rgba(253,246,227,.5); line-height: 1.6;
}
.footer__social-col { text-align: right; }
.footer__col-head {
  font-family: var(--mont); font-size: .65rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--turmeric); margin-bottom: 20px;
}
.footer__social-links {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.footer__social-links a {
  font-family: var(--mont); font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--soft-ivory); text-decoration: none;
  opacity: .6; transition: opacity var(--trans), color var(--trans);
}
.footer__social-links a:hover { opacity: 1; color: var(--turmeric); }

.footer__bottom {
  border-top: 1px solid rgba(253,246,227,.08);
  padding-top: 30px;
}
.footer__bottom-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__copy {
  font-family: var(--lato); font-size: .75rem;
  color: rgba(253,246,227,.35);
}
.footer__legal-links {
  display: flex; gap: 24px; list-style: none; padding: 0; margin: 0;
}
.footer__legal-links a {
  font-family: var(--mont); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(253,246,227,.4); text-decoration: none;
  transition: color var(--trans);
}
.footer__legal-links a:hover { color: var(--turmeric); }

/*  RESPONSIVE  */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
}
@media (max-width: 768px) {
  .footer__grid { flex-direction: column; text-align: center; align-items: center; }
  .footer__social-col { text-align: center; }
  .footer__social-links { align-items: center; }
  .footer__bottom-inner { flex-direction: column; gap: 20px; text-align: center; }
}
