/* Clone styling inspired by flyingdressphotoshoothawaii.com Squarespace layout */

:root {
  /* Playfair Display — headlines, quotes, captions; Montserrat — body, nav, forms, UI */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --max-width: 900px;
  --wide-width: 1100px;
  --color-bg: #faf9f7;
  --color-bg-deep: #1a1a1a;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #4a4a4a;
  --color-white: #ffffff;
  --color-accent: #2c5f6f;
  --color-accent-hover: #1e4552;
  --color-copper: #2c5f6f;
  --color-navy: #0f2438;
  --color-plum: transparent;
  --color-border: #e8e4df;
  --halo-edge: #faf9f7;
  --halo-copper: rgba(250, 249, 247, 0.35);
  --halo-amber: transparent;
  --halo-plum: rgba(250, 249, 247, 0.2);
  --halo-blue: transparent;
  --header-bg: rgba(255, 255, 255, 0.96);
  --logo-filter: none;
  --heading-color: #1a1a1a;
  --btn-primary-bg: #1a1a1a;
  --btn-primary-color: #ffffff;
  --btn-primary-hover: #1e4552;
  --nav-active-color: #1a1a1a;
  --nav-active-border: #2c5f6f;
  --feature-star: #2c5f6f;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light only;
  background-color: var(--color-bg);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--heading-color);
}

main {
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header & navigation */
.site-header {
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .logo {
  filter: var(--logo-filter);
  opacity: 0.94;
}

.logo-link {
  display: inline-block;
}

.logo {
  max-width: min(420px, 88vw);
  margin: 0 auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin: 1rem auto 0;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

.site-nav ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-text);
  text-decoration: none;
}

.site-nav a.active {
  color: var(--nav-active-color);
  border-bottom: 1px solid var(--nav-active-border);
}

@media (max-width: 640px) {
  .site-header {
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: block;
    background: #ffffff;
    margin: 0 -1.5rem;
    padding: 0 1.5rem 0.75rem;
    border-top: 1px solid var(--color-border);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .site-nav a {
    color: var(--color-text);
  }
}

/* Hero — homepage full-bleed feature photo */
.hero {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.hero-shell {
  position: relative;
}

.page-home .hero-shell {
  --home-hero-divider: 2px solid #fff;
}

.page-home .hero-shell > .hero,
.page-home > .hero.hero--midpage {
  border-bottom: var(--home-hero-divider);
}

.page-home .hero--home-arch {
  border-bottom: none;
}

.page-home .hero--home-arch::after {
  content: "";
  display: block;
  height: 2px;
  background: #fff;
}

.page-home .hero--home-purple {
  border-bottom: var(--home-hero-divider);
}

.page-home .hero-shell > .hero--home-primary {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.page-home .hero-shell > .hero--home-primary .hero-media {
  position: relative;
  inset: auto;
  height: auto;
}

.page-home .hero-shell > .hero--home-primary .hero-feature {
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: center top;
  display: block;
}

.page-home .hero-shell > .hero--home-primary::after {
  display: none;
}

.hero--fullbleed {
  position: relative;
  width: 100%;
  height: min(80vh, calc(100vw * 1760 / 2560));
  min-height: clamp(440px, 52vh, 580px);
  overflow: hidden;
}

.hero--fullbleed .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.hero--fullbleed .hero-feature {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.hero--fullbleed.hero--midpage {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.hero--fullbleed.hero--midpage .hero-media {
  position: relative;
  inset: auto;
  height: auto;
}

.hero--fullbleed.hero--midpage .hero-feature {
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: center;
}

.page-home .hero--home-bridge {
  position: relative;
}

.page-home .hero-scrim--home-tagline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(8.25rem, 16vh, 10.5rem);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(15, 36, 56, 0.42) 0%,
    rgba(15, 36, 56, 0.14) 62%,
    transparent 100%
  );
}

.page-home .hero-overlay--home-tagline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(8.25rem, 16vh, 10.5rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.2rem 1rem 0.55rem;
  text-align: center;
  pointer-events: none;
}

.page-home .hero-overlay--home-tagline .hero-tagline {
  pointer-events: auto;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  font-size: clamp(1.35rem, 4.2vw, 2.25rem);
  line-height: 1.08;
}

.hero-tagline__line {
  display: block;
}

.hero-tagline__line--lead {
  white-space: nowrap;
}

.page-home .hero-home-tagline--primary {
  display: block;
}

.page-home .hero-home-tagline--bridge {
  display: none;
}

@media (min-width: 641px) {
  .page-home .hero-scrim--home-tagline.hero-home-tagline--primary {
    display: none;
  }

  .page-home .hero-overlay--home-tagline.hero-home-tagline--primary {
    top: auto;
    bottom: 2.75in;
    height: auto;
    min-height: 0;
    padding: 0 1rem;
    justify-content: center;
    background: none;
  }

  .page-home .hero-overlay--home-tagline.hero-home-tagline--primary .hero-tagline {
    text-shadow: 0 2px 18px rgba(15, 36, 56, 0.65), 0 1px 4px rgba(15, 36, 56, 0.45);
  }

  .page-home .hero-overlay--home-tagline .hero-tagline {
    font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  }
}

@media (max-width: 640px) {
  .page-home .hero-scrim--home-tagline.hero-home-tagline--primary {
    display: none;
  }

  .page-home .hero-overlay--home-tagline.hero-home-tagline--primary {
    top: auto;
    bottom: clamp(0.35rem, 2.5vw, 0.85rem);
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: none;
  }

  .page-home .hero-overlay--home-tagline.hero-home-tagline--primary .hero-tagline {
    font-size: clamp(0.78rem, 2.9vw, 1rem);
    line-height: 1.05;
    gap: 0.08em;
    max-width: none;
    margin-inline: auto;
    text-align: center;
    text-shadow: 0 2px 16px rgba(15, 36, 56, 0.72), 0 1px 4px rgba(15, 36, 56, 0.5);
  }
}

.hero-tagline {
  max-width: 18ch;
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(15, 36, 56, 0.45);
}

.btn-primary--hero {
  background: var(--color-accent);
  box-shadow: 0 8px 28px rgba(15, 36, 56, 0.35);
}

.btn-primary--hero:hover {
  background: var(--color-accent-hover);
}

/* Home — nav overlaid on hero image */
.page-home .hero-shell .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-home .hero-shell .logo {
  filter: brightness(0) invert(1);
  opacity: 1;
  max-width: min(500px, 94vw);
}

.page-home .hero-shell .site-nav ul {
  gap: 0.45rem 1.5rem;
}

.page-home .hero-shell .site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 10px rgba(15, 36, 56, 0.55);
}

.page-home .hero-shell .site-nav a:hover,
.page-home .hero-shell .site-nav a.active {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.page-home .hero-shell .nav-toggle span {
  background: #fff;
}

@media (max-width: 640px) {
  .page-home .hero-shell .site-header {
    background: transparent;
  }

  .page-home .hero-shell .logo {
    max-width: min(460px, 92vw);
  }

  .page-home .hero-shell .site-nav a {
    font-size: 0.9rem;
  }

  .page-home .hero-shell .site-nav.is-open {
    background: rgba(15, 36, 56, 0.94);
    margin: 0;
    padding: 0 1.5rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .page-home .hero-shell .site-nav.is-open a {
    color: #fff;
  }
}

.hero-media {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-media img,
.hero-feature {
  width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials--sunset::before {
    height: 4rem;
  }
}

/* Intro — mirrors Hawaii homepage structure */
.intro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
}

.intro .services-heading {
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.intro-portfolio-cta {
  margin: 0 0 1.75rem;
}

.headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 2.5rem;
  letter-spacing: 0.01em;
  color: var(--heading-color);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  text-align: left;
}

.features li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.features li::before {
  content: "♛";
  position: absolute;
  left: 0;
  color: var(--feature-star);
  font-size: 0.95rem;
  top: 0.5rem;
}

.cta-block {
  margin-top: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.25rem;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-color) !important;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  background: #1e4552;
  filter: none;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--color-text) !important;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--nav-active-border);
  margin-top: 0.75rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-white) !important;
  border-color: var(--color-text);
  text-decoration: none;
}

.cta-phone {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Testimonials */
.testimonials {
  background: var(--color-surface);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.testimonials--sunset {
  position: relative;
  padding: 0;
  margin-top: -2rem;
  border: none;
  background: var(--color-bg);
  overflow: hidden;
}

.testimonials--sunset::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 9rem;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--halo-edge) 0%,
    rgba(250, 249, 247, 0.92) 35%,
    transparent 100%
  );
}

.testimonials-backdrop {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

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

.testimonials-backdrop-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      var(--halo-edge) 0%,
      transparent 12%,
      transparent 88%,
      var(--halo-edge) 100%
    ),
    linear-gradient(
      to top,
      var(--halo-edge) 0%,
      rgba(250, 249, 247, 0.95) 6%,
      rgba(250, 249, 247, 0.55) 18%,
      rgba(250, 249, 247, 0.15) 32%,
      transparent 48%
    ),
    linear-gradient(
      to bottom,
      transparent 40%,
      rgba(15, 36, 56, 0.2) 75%,
      rgba(15, 36, 56, 0.55) 100%
    );
}

.testimonials-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 1.5rem 3.5rem;
}

@media (max-width: 767px) {
  .testimonials-backdrop-mesh {
    background:
      linear-gradient(
        to right,
        var(--halo-edge) 0%,
        transparent 8%,
        transparent 92%,
        var(--halo-edge) 100%
      ),
      linear-gradient(
        to top,
        var(--halo-edge) 0%,
        rgba(250, 249, 247, 0.98) 10%,
        rgba(250, 249, 247, 0.7) 22%,
        rgba(250, 249, 247, 0.25) 38%,
        transparent 55%
      );
  }

  .testimonials--sunset .testimonial-card {
    background: rgba(255, 255, 255, 0.96);
  }
}

@media (min-width: 768px) {
  .testimonials-backdrop {
    min-height: 520px;
  }

  .testimonials-inner {
    padding: 3rem 1.5rem 4rem;
  }
}

.section-title--on-photo {
  color: #fff;
  text-shadow: 0 2px 20px rgba(15, 36, 56, 0.5);
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}

.testimonials--sunset .testimonial-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(15, 36, 56, 0.12);
}

.testimonials--sunset .testimonial-card blockquote p {
  color: var(--color-text);
}

.testimonials--sunset .testimonial-card cite {
  color: var(--color-muted);
}

.section-cta--on-photo {
  margin-top: 2rem;
}

.btn-secondary--light {
  color: #fff !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-color: #fff;
  background: rgba(15, 36, 56, 0.35);
}

.btn-secondary--light:hover {
  background: rgba(15, 36, 56, 0.65);
  color: #fff !important;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading-color);
}

.testimonials-grid {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid--featured {
    max-width: var(--wide-width);
  }
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.featured-testimonials:not(.testimonials--sunset) {
  padding-bottom: 3rem;
}

.testimonial-card {
  background: var(--color-surface-elevated);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border);
}

.testimonial-card .stars {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Deposit notice */
.deposit-notice {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.deposit-notice p {
  margin: 0 0 1rem;
}

.mahalo {
  font-style: italic;
}

/* Contact */
.contact-banner {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 36, 56, 0.12) 100%);
}

.contact-banner .owner {
  color: var(--color-text);
}

.contact-banner .page-affiliate {
  color: var(--color-muted);
}

.logo-footer {
  max-width: 320px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

.owner {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.page-affiliate {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.page-signature {
  margin-top: 2.5rem;
  text-align: center;
}

.page-signature .owner {
  margin-bottom: 0.4rem;
}

.about-cta .owner {
  margin-top: 2rem;
}

.about-cta .page-affiliate {
  margin-bottom: 0;
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 1.75rem;
}

.social a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.social a:hover {
  color: var(--color-accent);
}

/* About page */
.page-hero--about {
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-surface-elevated) 0%, var(--color-bg) 100%);
}

.about-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
  box-shadow: 0 12px 36px rgba(15, 36, 56, 0.08);
}

.about-portrait--featured {
  margin-bottom: 2.5rem;
}

.about-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.about-lead-text {
  max-width: 40rem;
}

@media (min-width: 768px) {
  .about-lead-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.about-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 1.5;
  color: var(--color-accent);
  margin: 0 0 1.25rem;
}

.about-lead-text p {
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}

.about-bio {
  padding-top: 0;
}

.about-prose {
  max-width: 42rem;
  margin: 0 auto;
}

.about-prose p {
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}

.about-pullquote {
  margin: 2rem 0;
  padding: 1.5rem 1.25rem;
  border-left: 3px solid var(--nav-active-border);
  background: var(--color-surface-elevated);
}

.about-pullquote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.55;
}

.about-gallery-quote {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
  padding: 1.5rem 1.25rem;
  border: none;
  border-left: 3px solid var(--nav-active-border);
  background: var(--color-surface-elevated);
}

.about-gallery-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.55;
}

.about-gallery-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .about-gallery-layout {
    grid-template-columns: 1fr minmax(240px, 30%) 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.about-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .about-gallery-col {
    gap: 1.5rem;
  }

  .about-gallery-col--center {
    max-width: 320px;
    justify-self: center;
    width: 100%;
  }
}

.about-gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
  line-height: 0;
}

.about-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.about-gallery-credit {
  margin: 1.25rem 0 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.about-cta {
  text-align: center;
  padding-bottom: 4rem;
}

.about-cta-text {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  color: var(--color-muted);
}

.about-cta .btn-secondary {
  margin-left: 0.5rem;
}

@media (max-width: 520px) {
  .about-cta .btn-secondary {
    display: inline-block;
    margin: 0.75rem 0 0;
  }
}

/* Portfolio — flush two-column masonry */
.portfolio.page-content.portfolio--fullbleed {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.portfolio-stack {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.portfolio-masonry__col {
  flex: 1;
  min-width: 0;
}

@media (max-width: 639px) {
  .portfolio-stack {
    flex-direction: column;
  }
}

.portfolio-stack .portfolio-item {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  min-width: 0;
  line-height: 0;
}

.portfolio-stack .portfolio-item__btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  line-height: 0;
  font-size: 0;
}

.portfolio-stack .portfolio-item__btn img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  transition: opacity 0.2s ease;
  image-rendering: auto;
}

.portfolio-stack .portfolio-item__btn:hover img,
.portfolio-stack .portfolio-item__btn:focus-visible img {
  opacity: 0.96;
}

.portfolio-cta {
  padding: 2.5rem 1.5rem 0;
  text-align: center;
}

.portfolio-lightbox {
  width: min(96vw, 1200px);
  max-width: 96vw;
  max-height: 96vh;
  padding: 0;
  border: none;
  background: transparent;
}

.portfolio-lightbox::backdrop {
  background: rgba(15, 36, 56, 0.88);
}

.portfolio-lightbox__img {
  display: block;
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
}

.portfolio-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* Quick links (home) */
.quick-links {
  padding: 2rem 1.5rem 3rem;
  background: var(--color-bg);
}

.quick-links-grid {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-link-card {
  display: block;
  padding: 1.5rem;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-link-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

.quick-link-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.quick-link-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Inner pages */
.page-hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  background: var(--color-surface-elevated);
  border-bottom: 1px solid var(--color-border);
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-lead {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.premium-note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.page-content {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.intro-text {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  color: var(--color-muted);
}

/* FAQ */
.faq-page {
  width: 100%;
  overflow-x: hidden;
}

.faq-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 12rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(3.5rem, 7vw, 5rem);
  background:
    linear-gradient(
      rgba(250, 249, 247, 0.48),
      rgba(250, 249, 247, 0.48)
    ),
    url("dress_colors/ZOR02580.jpg") center center / cover no-repeat;
  background-attachment: scroll;
}

.faq-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  margin: 0 auto;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0 0 0.75rem;
  color: var(--color-text);
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.9);
}

.faq-hero__lead {
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.85);
}

.faq-list {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.faq-list--hero {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  padding: 0.35rem 1.5rem;
  box-shadow: 0 16px 48px rgba(15, 36, 56, 0.1);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 400;
  padding: 1.2rem 0;
  cursor: pointer;
  list-style: none;
  color: var(--color-text);
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-muted);
  margin-top: 0.1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.35rem;
  color: var(--color-muted);
  padding: 0 0 0.15rem;
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq-list--hero {
    padding: 0.2rem 1rem;
  }

  .faq-item summary {
    gap: 0.85rem;
    padding: 1rem 0;
  }
}

/* Dress colors */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

/* Balanced 2-column masonry (columns filled by dress-colors.js) */
.color-grid--photos {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
}

.color-masonry__col {
  flex: 1;
  min-width: 0;
}

@media (min-width: 900px) {
  .color-grid--photos {
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .color-grid--photos {
    flex-direction: column;
  }
}

#dress-colors.page-content {
  max-width: 1280px;
}

.dress-colors-credit {
  margin: 0 0 1.5rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.dress-colors-credit a {
  color: var(--color-text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.dress-colors-credit a:hover {
  color: var(--color-accent);
}

.color-card {
  margin: 0 0 1.75rem;
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.color-masonry__col .color-card:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .color-card {
    margin-bottom: 2rem;
  }
}

.color-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.color-card figcaption {
  padding: 0.85rem 0 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text);
  background: transparent;
}

.color-card figcaption small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-muted);
}

/* Dress colors — view modes */
.view-mode-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.view-mode-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.view-mode-btn:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.view-mode-btn.is-active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}

.dress-view[hidden] {
  display: none !important;
}

/* Shuffle deck */
.shuffle-stage {
  max-width: 420px;
  margin: 0 auto 2rem;
  text-align: center;
}

.shuffle-stack {
  position: relative;
  width: 100%;
  max-width: min(640px, 92vw);
  margin: 0 auto 1.25rem;
  aspect-ratio: 4 / 3;
  perspective: 1200px;
}

.shuffle-stack .shuffle-card figcaption {
  display: none;
}

.shuffle-stack .shuffle-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.shuffle-stack .shuffle-card {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.48s ease;
  will-change: transform, opacity;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.shuffle-stack .shuffle-card.shuffle-pos-0 {
  z-index: 3;
  transform: translate(0, 0) scale(1) rotate(0deg);
  opacity: 1;
}

.shuffle-stack .shuffle-card.shuffle-pos-1 {
  z-index: 2;
  transform: translate(10px, 14px) scale(0.96) rotate(2deg);
  opacity: 0.92;
}

.shuffle-stack .shuffle-card.shuffle-pos-2 {
  z-index: 1;
  transform: translate(20px, 28px) scale(0.92) rotate(-2deg);
  opacity: 0.78;
}

.shuffle-stack .shuffle-card.shuffle-hidden {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(20px, 28px) scale(0.9);
}

.shuffle-stack .shuffle-card.shuffle-exit-next {
  z-index: 4;
  transform: translate(115%, -6%) scale(0.88) rotate(14deg);
  opacity: 0;
}

.shuffle-stack .shuffle-card.shuffle-exit-prev {
  z-index: 4;
  transform: translate(-115%, -6%) scale(0.88) rotate(-14deg);
  opacity: 0;
}

.shuffle-meta {
  margin-bottom: 1rem;
}

.shuffle-label {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--color-text);
}

.shuffle-counter {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.shuffle-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.shuffle-btn {
  min-width: 7rem;
}

/* Full page slideshow */
.dress-view--fullscreen .fullscreen-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 0 2rem;
}

.fullscreen-slide {
  width: 100%;
  text-align: center;
}

.fullscreen-slide img {
  display: inline-block;
  width: auto;
  max-width: min(960px, 100%);
  height: auto;
  max-height: min(72vh, 720px);
  margin: 0 auto;
  vertical-align: middle;
}

.fullscreen-caption {
  margin: 0.85rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text);
}

.fullscreen-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.fullscreen-counter {
  margin: 0;
  min-width: 12rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* One-by-one vertical scroll */
.dress-view--scroll .scroll-track {
  height: min(72vh, 720px);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
}

.scroll-slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1.25rem;
}

.scroll-slide img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(72vh - 5rem);
  margin: 0 auto;
}

.scroll-slide-caption {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {
  .shuffle-stack .shuffle-card {
    transition: none;
  }

  .scroll-track {
    scroll-behavior: auto;
  }
}

/* Experience guide */
#experience-guide.page-content {
  max-width: 960px;
}

.view-mode-toolbar--single {
  justify-content: center;
}

.guide-fullscreen-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 0 2.5rem;
  outline: none;
}

.guide-fullscreen-slide {
  width: 100%;
  text-align: center;
}

.guide-fullscreen-slide img {
  display: inline-block;
  width: auto;
  max-width: min(680px, 100%);
  height: auto;
  max-height: min(82vh, 880px);
  margin: 0 auto;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 48px rgba(15, 36, 56, 0.1);
}

.experience-rates {
  border-top: 1px solid var(--color-border);
  padding-top: 3.5rem;
}

.experience-rates__body {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: left;
}

.rates-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  text-align: center;
  margin: 0 0 1.75rem;
  color: var(--color-text);
}

.rates-subhead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rates-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.rates-list li {
  margin-bottom: 0.55rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.rates-note {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0.85rem 0 0;
}

.rates-contact,
.rates-affiliate {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* Prints & activities */
.prints-grid,
.activity-list {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .prints-grid,
  .activity-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.print-card,
.activity-card {
  background: var(--color-surface-elevated);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
}

.print-card h2,
.activity-card h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.print-card p,
.activity-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Contact forms */
.contact-page {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-page {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }

  .form-tabs,
  .contact-form,
  #form-notice {
    grid-column: 1;
  }

  .contact-aside {
    grid-column: 2;
    grid-row: 1 / span 10;
  }
}

.form-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-tab {
  flex: 1;
  min-width: 10rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.form-tab:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.form-tab.active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}

.contact-form {
  background: var(--color-surface-elevated);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.contact-form[hidden] {
  display: none;
}

.form-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}

.form-desc {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.form-hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.required {
  color: var(--color-accent);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

@media (min-width: 520px) {
  .form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.form-notice {
  padding: 1rem;
  border: 1px solid #b8d9ce;
  color: var(--color-text);
  font-size: 0.95rem;
  background: #e8f4f0;
}

.form-notice--error {
  border-color: #e0b4b4;
  background: #fdf0f0;
}

.form-row--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-aside {
  background: var(--color-surface-elevated);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  text-align: center;
}

.contact-aside h3 {
  font-family: var(--font-serif);
  margin: 0 0 0.75rem;
}

.phone-large {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.deposit-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1.25rem;
}

.contact-banner .btn-secondary {
  margin-left: 0.5rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2.75rem 1.5rem 2.25rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  background: var(--color-surface-elevated);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--color-text);
  margin: 0 0 0.65rem;
  letter-spacing: 0.02em;
}

.footer-owner {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 0 0.35rem;
}

.footer-headshot {
  display: block;
  width: min(10.5rem, 40vw);
  height: auto;
  margin: 0.75rem auto 1rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(15, 36, 56, 0.08);
}

.footer-phone {
  width: 100%;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  text-align: center;
}

.footer-phone a {
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.footer-phone a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-affiliate {
  width: 100%;
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: center;
}

.footer-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
  margin: 0 auto 0.85rem;
  padding: 0;
  line-height: 1.65;
  font-size: 0.82rem;
  text-align: center;
}

.footer-location__line {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.site-footer p {
  margin: 0 0 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.35rem;
  margin: 0 0 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer .social {
  margin-bottom: 1.25rem;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin: 0 0 1.25rem;
}

.btn-primary--footer,
.btn-secondary--footer {
  padding: 0.85rem 1.75rem;
  font-size: 0.72rem;
  margin: 0;
}

.btn-secondary--footer {
  display: inline-block;
}

.copyright {
  margin-top: 0 !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.68rem;
  line-height: 1.6;
}
