/* ==========================================================================
   GET READY PHOTO — Global styles: fonts and design tokens
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CUSTOM FONTS - local assets
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Cormorant';
  src: url('/assets/fonts/cormorant-400-normal-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('/assets/fonts/cormorant-400-italic-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-300-400-normal-latin.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-300-400-normal-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-300-400-italic-latin.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-300-400-italic-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat-latin-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Silk Serif Regular';
  src: url('/assets/fonts/silk-serif-regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Silk Serif Light';
  src: url('/assets/fonts/silk-serif-light.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Silk Serif Light Italic';
  src: url('/assets/fonts/silk-serif-light-italic.woff') format('woff');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Silk Serif Medium';
  src: url('/assets/fonts/silk-serif-medium.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Silk Serif Medium Italic';
  src: url('/assets/fonts/silk-serif-medium-italic.woff') format('woff');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'White Angelica';
  src: url('/assets/fonts/white-angelica.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* --------------------------------------------------------------------------
   2. CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --grp-bg:       #ffffff;
  --grp-bg-warm:  #fbfaf9;
  --grp-bg-off:   #f6f5f1;
  --grp-text:     #000000;
  --grp-muted:    #373535;
  --grp-subtle:   #373535;
  --grp-gold:     rgba(210,195,110,1);
  --grp-navy:     rgba(0,37,57,1);

  /* Fonts */
  --font-silk-reg:    'Silk Serif Regular', Georgia, serif;
  --font-silk-light:  'Silk Serif Light', Georgia, serif;
  --font-silk-light-i:'Silk Serif Light Italic', Georgia, serif;
  --font-silk-med:    'Silk Serif Medium', Georgia, serif;
  --font-silk-med-i:  'Silk Serif Medium Italic', Georgia, serif;
  --font-angelica:    'White Angelica', cursive;
  --font-cormorant:   'Cormorant', Georgia, serif;
  --font-cormorant-g: 'Cormorant Garamond', Georgia, serif;
  --font-montserrat:  'Montserrat', Arial, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --trans:  0.5s ease;

  /* Type scale */
  --grp-body-size: 18px;
  --grp-body-weight: 300;
  --grp-body-leading: 1.8;
  --grp-eyebrow-size: 15px;
  --grp-eyebrow-size-small: 12px;
}

/* ==========================================================================
   GET READY PHOTO — Reset and base styles
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.grp-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;
}

html, body {
  background-color: var(--grp-bg);
  color: var(--grp-text);
  overflow-x: hidden;
}

body {
  font-family: var(--font-cormorant-g);
  font-size: 16px;
  line-height: 1.6;
}

img  { display: block; border: none; }
a    { text-decoration: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ==========================================================================
   GET READY PHOTO — Shared and locked visual components
   ========================================================================== */

/* --------------------------------------------------------------------------
   BUTTONS
   Update here → updates every page instantly
   -------------------------------------------------------------------------- */

/* Primary: gold border, transparent bg */
.grp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(145px, 16vw, 229px);
  min-height: clamp(42px, 3.82vw, 55px);
  border: 1px solid var(--grp-gold);
  background: transparent;
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: inherit;
  padding: 0 clamp(15px, 2.25vw, 32px);
  cursor: pointer;
  transition: border-color var(--trans), opacity var(--trans);
  text-align: center;
  white-space: nowrap;
}
.grp-btn:hover {
  border-color: rgba(210,195,110,0.7);
  opacity: 0.75;
}
.grp-btn:focus-visible {
  outline: 2px solid var(--grp-gold);
  outline-offset: 3px;
}
.grp-btn:disabled,
.grp-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.45;
}

/* Secondary navigation CTA: uppercase text with a gold rule */
.grp-text-link {
  display: inline-flex;
  min-width: 172px;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: inherit;
  transition: color var(--trans), opacity var(--trans);
}
.grp-text-link::after {
  content: "";
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: var(--grp-gold);
}
.grp-text-link:hover {
  color: var(--grp-gold);
}
.grp-text-link:focus-visible {
  outline: 2px solid var(--grp-gold);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .grp-text-link {
    min-width: 128px;
    font-size: 11px;
  }
  .grp-text-link::after { margin-top: 4px; }
}

/* Carousel navigation control */
.grp-arrow-btn {
  width: 63px;
  height: 65px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--grp-gold);
  cursor: pointer;
  transition: color var(--trans), opacity var(--trans);
}
.grp-arrow-btn--previous { transform: rotate(180deg); }
.grp-arrow-btn svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.grp-arrow-btn:hover { opacity: 0.7; }
.grp-arrow-btn:focus-visible {
  outline: 2px solid var(--grp-gold);
  outline-offset: 3px;
}
.grp-arrow-btn:disabled,
.grp-arrow-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.35;
}

@media (max-width: 1024px) {
  .grp-arrow-btn { height: 68px; }
  .grp-arrow-btn--previous { width: 69px; }
  .grp-arrow-btn--next { width: 66px; }
}


/* Editorial body copy — approved from Home */
.grp-section-title {
  font-family: var(--font-silk-light);
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--grp-text);
  text-transform: uppercase;
}

.grp-body-copy {
  font-family: var(--font-cormorant-g);
  font-size: var(--grp-body-size);
  font-weight: var(--grp-body-weight);
  line-height: var(--grp-body-leading);
  color: var(--grp-body-color, #373535);
}

.grp-eyebrow {
  font-family: var(--font-montserrat);
  font-size: var(--grp-eyebrow-size);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--grp-eyebrow-color, #000000);
  text-transform: uppercase;
}

.grp-eyebrow--small {
  font-size: var(--grp-eyebrow-size-small);
  font-weight: 400;
}

/* Centered editorial section header stack */
.grp-centered-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/* Standard image hero for interior pages */
.grp-image-hero {
  min-height: 550px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-align: center;
  background-image:
    linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
    var(--grp-image-hero-image);
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--grp-gold);
}

.grp-image-hero__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  translate: 0 -10px;
}

.grp-image-hero__kicker {
  margin: 0;
}

.grp-image-hero__kicker::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 10px auto 0;
  background: var(--grp-gold);
}

.grp-image-hero__title {
  margin: 0;
  font-family: var(--font-silk-light);
  font-size: clamp(44px, 4.5vw, 50px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  translate: 0 -16px;
}

@media (max-width: 1024px) {
  .grp-image-hero {
    min-height: clamp(350px, 46vw, 550px);
  }
}

@media (max-width: 767px) {
  .grp-image-hero {
    min-height: 280px;
  }

  .grp-image-hero__kicker::after {
    width: 35px;
    margin-top: 7px;
  }

  .grp-image-hero__title {
    font-family: var(--font-silk-reg);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 1024px) {
  .grp-eyebrow { font-size: 13px; }
  .grp-eyebrow--small { font-size: 10px; }
}

/* ==========================================================================
   GET READY PHOTO — Shared site shell
   GLOBAL ONLY: shared header, navigation, contact CTA, and footer
   Page sections  → assets/css/pages/<page>.css
   Header markup   → assets/includes/header.php; styles live in this file
   Footer markup   → assets/includes/footer.php; styles live in this file
   ========================================================================== */

/* --------------------------------------------------------------------------
   5. DESKTOP BRAND BAR
   Shared by every page that displays the location, logo, and primary CTA
   -------------------------------------------------------------------------- */
.grp-brand-bar {
  width: 100%;
  max-width: 1000px;
  height: 188px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 100%;
  align-items: center;
}

.grp-brand-bar__location {
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.grp-brand-bar__location {
  grid-column: 1;
  justify-self: start;
  text-align: center;
  line-height: 1.5;
}

.grp-brand-bar__location em {
  font-family: var(--font-cormorant);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
}

.grp-brand-bar__logo {
  grid-column: 2;
  width: 226px;
  justify-self: center;
  transform: translateY(-6px) scale(1.222);
  transform-origin: center;
}

.grp-brand-bar__logo img {
  width: 100%;
  height: auto;
}

.grp-brand-bar__cta {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
}

.grp-brand-bar__button {
  min-width: 200px;
  min-height: 48px;
  padding-inline: 24px;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .grp-brand-bar {
    padding-inline: 32px;
  }
}

@media (max-width: 900px) {
  .grp-brand-bar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   6. GLOBAL HEADER & NAVIGATION
   Shared markup lives in assets/includes/header.php
   -------------------------------------------------------------------------- */
#grp-header {
  display: none;
}

#grp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--grp-bg-off);
}

.grp-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: 820px;
  height: 73px;
  margin: 0 auto;
  align-items: center;
}

.grp-nav-link {
  text-align: center;
  color: var(--grp-muted);
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--trans);
}

.grp-nav-link:hover { color: var(--grp-gold); }

#grp-mobile-nav {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#grp-mobile-nav.is-open { display: flex; }

.grp-mobile-nav-close {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.grp-mobile-nav-close svg {
  width: 100%;
  height: 100%;
  fill: var(--grp-muted);
}

.grp-mobile-nav-close:hover svg { fill: var(--grp-gold); }

.grp-mobile-nav-link {
  padding: 18px 0;
  color: var(--grp-muted);
  font-family: var(--font-silk-light);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--trans);
}

.grp-mobile-nav-link:hover { color: var(--grp-gold); }

.grp-mobile-nav-tagline {
  margin-top: 30px;
  color: var(--grp-muted);
  font-family: var(--font-cormorant-g);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.grp-mobile-nav-tagline--secondary { margin-top: 10px; }

.grp-mobile-nav-social {
  display: flex;
  margin-top: 30px;
  gap: 20px;
}

.grp-mobile-nav-social a svg {
  width: 23px;
  height: 23px;
  fill: var(--grp-gold);
  transition: fill var(--trans);
}

.grp-mobile-nav-social a:hover svg { fill: var(--grp-muted); }

@media (max-width: 900px) {
  #grp-header {
    position: relative;
    display: flex;
    width: 100%;
    height: 88px;
    background: var(--grp-bg);
    align-items: center;
    justify-content: center;
  }

  .grp-header-logo-m {
    position: absolute;
    top: 3px;
    left: 50%;
    display: block;
    width: 205px;
    height: 82px;
    overflow: hidden;
    transform: translateX(-50%);
  }

  .grp-header-logo-m img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }

  .grp-hamburger {
    position: absolute;
    top: 5px;
    left: 5px;
    display: block;
    width: 44px;
    height: 36px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
  }

  .grp-hamburger svg {
    display: block;
    width: 28px;
    height: 100%;
    fill: var(--grp-gold);
  }

  #grp-nav { display: none; }
}

@media (max-width: 600px) {
  :root {
    --grp-body-size: 20px;
  }

  .grp-header-logo-m {
    top: 50%;
    width: 225.5px;
    height: 90.2px;
    transform: translate(-50%, -50%);
  }
}


/* --------------------------------------------------------------------------
   7. GLOBAL FOOTER
   Shared navigation, contact CTA, social links, and legal information
   -------------------------------------------------------------------------- */
#grp-footer-nav {
  border-top: 1px solid var(--grp-gold);
  border-bottom: 1px solid var(--grp-gold);
  background: var(--grp-bg);
}

.grp-footer-nav-inner {
  display: flex;
  width: 100%;
  max-width: var(--max-w);
  height: 102px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

.grp-footer-nav-brand {
  font-family: var(--font-silk-light-i);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--grp-muted);
  text-transform: lowercase;
  white-space: nowrap;
}

.grp-footer-nav-icon { margin-left: 16px; }

.grp-footer-nav-icon svg {
  display: block;
  width: 47px;
  height: 49px;
  fill: var(--grp-gold);
}

.grp-footer-nav-links {
  display: flex;
  margin-left: auto;
  align-items: center;
}

.grp-footer-nav-link {
  padding: 0 20px;
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #373535;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--trans);
}

.grp-footer-nav-link:hover { color: var(--grp-gold); }

#grp-contact-cta {
  display: flex;
  min-height: 311px;
  background: var(--grp-bg);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.grp-contact-cta-label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-cormorant-g);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #373535;
}

.grp-contact-cta-main {
  display: block;
  font-family: var(--font-silk-light);
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: 0.1em;
  color: var(--grp-text);
  text-transform: uppercase;
  transition: color var(--trans);
}

.grp-contact-cta-main:hover { color: var(--grp-gold); }

.grp-contact-cta-rule {
  display: block;
  width: 71px;
  height: 1px;
  margin: 12px auto;
  background: var(--grp-gold);
}

.grp-contact-cta-sub {
  display: block;
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #373535;
  text-transform: uppercase;
}

#grp-footer {
  overflow: hidden;
  border-top: 1px solid var(--grp-gold);
  background: var(--grp-bg);
}

.grp-footer-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.grp-footer-top {
  display: grid;
  min-height: 261px;
  grid-template-columns: 23% 19% minmax(0, 1fr);
  align-items: center;
}

.grp-footer-logo {
  width: 221px;
  height: 221px;
  justify-self: center;
}

.grp-footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.grp-footer-find {
  position: relative;
  display: flex;
  min-height: 146px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grp-footer-find::before,
.grp-footer-find::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 146px;
  background: var(--grp-gold);
}

.grp-footer-find::before { left: 0; }
.grp-footer-find::after { right: 0; }

.grp-footer-find-label {
  font-family: var(--font-silk-light);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--grp-muted);
  text-transform: uppercase;
}

.grp-footer-icons {
  display: flex;
  margin-top: 34px;
  gap: 12px;
  align-items: center;
}

.grp-footer-icons a svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: var(--grp-muted);
  transition: fill var(--trans);
}

.grp-footer-icons a:hover svg { fill: var(--grp-gold); }

.grp-footer-instagram {
  display: flex;
  min-width: 0;
  padding: 0 16px;
  gap: 14px;
  align-items: center;
}

.grp-footer-instagram-intro {
  display: flex;
  width: 140px;
  flex: 0 0 140px;
  flex-direction: column;
  align-items: flex-start;
}

.grp-footer-social-heading {
  font-family: var(--font-cormorant);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--grp-muted);
}

.grp-footer-social-name {
  margin-top: 8px;
  font-family: var(--font-silk-light);
  font-size: 19px;
  letter-spacing: 0.2em;
  color: var(--grp-muted);
  text-transform: uppercase;
  transition: color var(--trans);
}

.grp-footer-social-name:hover { color: var(--grp-gold); }

.grp-footer-ig-grid {
  display: grid;
  width: 100%;
  max-width: 447px;
  min-width: 0;
  flex: 1 1 447px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.grp-footer-ig-grid a {
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
}

.grp-footer-ig-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grp-footer-bottom {
  position: relative;
  display: flex;
  min-height: 186px;
  padding: 57px 20px 33px;
  border-top: 1px solid var(--grp-gold);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grp-footer-bottom::after {
  content: "";
  position: absolute;
  top: 152px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(218, 217, 213, 1);
}

.grp-footer-copy {
  font-family: var(--font-silk-light);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.3em;
  color: var(--grp-muted);
  text-transform: uppercase;
}

.grp-footer-legal {
  margin-top: 14px;
  font-family: var(--font-cormorant);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--grp-muted);
  text-transform: capitalize;
}

.grp-footer-legal-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 8px;
  background: var(--grp-gold);
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .grp-footer-nav-inner {
    height: auto;
    padding: 20px 0 10px;
    flex-direction: column;
  }

  .grp-footer-nav-icon { display: none; }

  .grp-footer-nav-links {
    width: 100%;
    margin-left: 0;
    padding-top: 10px;
    flex-direction: column;
  }

  .grp-footer-nav-link { padding: 12px 0; }

  #grp-contact-cta { min-height: 200px; }
  .grp-contact-cta-main { font-size: 18px; line-height: 1.2; }
  .grp-contact-cta-sub { font-size: 12px; }

  .grp-footer-top {
    display: flex;
    min-height: 0;
    padding: 24px 20px 34px;
    flex-direction: column;
    align-items: center;
  }

  .grp-footer-logo { width: 138px; height: 133px; }

  .grp-footer-find {
    width: 100%;
    min-height: 0;
    margin-top: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(218, 217, 213, 1);
  }

  .grp-footer-find::before,
  .grp-footer-find::after { display: none; }

  .grp-footer-icons { margin-top: 22px; gap: 14px; }
  .grp-footer-icons a svg { width: 22px; height: 22px; }

  .grp-footer-instagram {
    width: 100%;
    margin-top: 30px;
    padding: 0;
    flex-direction: column;
    gap: 0;
  }

  .grp-footer-instagram-intro {
    width: auto;
    flex-basis: auto;
    align-items: center;
  }

  .grp-footer-social-name { margin-top: 8px; font-size: 20px; }

  .grp-footer-ig-grid {
    width: min(100%, 340px);
    margin-top: 22px;
    flex: none;
    gap: 5px;
  }

  .grp-footer-bottom {
    min-height: 0;
    padding: 20px 20px;
  }

  .grp-footer-bottom::after { display: none; }

  .grp-footer-copy {
    width: min(100%, 320px);
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .grp-footer-legal {
    width: min(100%, 320px);
    margin-top: 14px;
    font-size: 10px;
  }
}

/* Shared layout for quiet support routes such as 404 and form confirmation. */
.grp-support-page {
  display: grid;
  min-height: 62vh;
  padding: 120px 24px;
  place-items: center;
  background: var(--grp-cream);
  color: var(--grp-text);
}

.grp-support-page__inner {
  width: min(100%, 760px);
  text-align: center;
}

.grp-support-page__eyebrow {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.grp-support-page h1 {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-silk-light);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.12;
}

.grp-support-page p {
  max-width: 620px;
  margin: 28px auto 0;
}

.grp-support-page__action {
  display: inline-block;
  margin-top: 34px;
}

@media (max-width: 600px) {
  .grp-support-page {
    min-height: 56vh;
    padding: 88px 24px;
  }

  .grp-support-page h1 { font-size: 40px; }
  .grp-support-page__eyebrow { font-size: 11px; }
}
