/* --- Tokens (shared) --- */
:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 4.5rem;
  --evening-hour: 18;
}

/* Light mode: morning through evening (before 6 PM) */
html[data-theme="light"] {
  --bg: #f7f4ef;
  --bg-elevated: #ffffff;
  --bg-alt: #efeae3;
  --bg-mid: #e8e2d9;
  --text: #1a1816;
  --text-muted: #6b6560;
  --accent: #8a6d3f;
  --accent-hover: #a0804a;
  --accent-dim: rgba(138, 109, 63, 0.12);
  --border: rgba(26, 24, 22, 0.1);
  --header-bg-top: rgba(247, 244, 239, 0.95);
  --header-bg-scrolled: rgba(247, 244, 239, 0.94);
  --header-nav-mobile: rgba(247, 244, 239, 0.98);
  --hero-glow: rgba(138, 109, 63, 0.14);
  --hero-shadow: rgba(120, 90, 50, 0.12);
  --btn-primary-fg: #f7f4ef;
}

/* Dark mode: evening through night (6 PM onward) */
html[data-theme="dark"] {
  --bg: #0a0908;
  --bg-elevated: #141210;
  --bg-alt: #0f0e0c;
  --bg-mid: #12100e;
  --text: #e8e4df;
  --text-muted: #9a948c;
  --accent: #c4a574;
  --accent-hover: #d4b88a;
  --accent-dim: rgba(196, 165, 116, 0.15);
  --border: rgba(232, 228, 223, 0.08);
  --header-bg-top: rgba(10, 9, 8, 0.95);
  --header-bg-scrolled: rgba(10, 9, 8, 0.92);
  --header-nav-mobile: rgba(10, 9, 8, 0.98);
  --hero-glow: rgba(196, 165, 116, 0.12);
  --hero-shadow: rgba(80, 60, 40, 0.2);
  --btn-primary-fg: #0a0908;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: 0.02em;
}

.container {
  width: min(72rem, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-intro {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0.75rem 0 2.5rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding:
    env(safe-area-inset-top, 0px)
    max(clamp(1rem, 4vw, 2.5rem), env(safe-area-inset-right))
    0
    max(clamp(1rem, 4vw, 2.5rem), env(safe-area-inset-left));
  background: linear-gradient(to bottom, rgba(8, 7, 6, 0.55), transparent);
  color: var(--text);
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.site-header.scrolled {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header:not(.scrolled) .logo,
.site-header:not(.scrolled) .site-nav a {
  color: rgba(247, 244, 239, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.site-header:not(.scrolled) .site-nav a:hover {
  color: var(--accent);
}

.site-header:not(.scrolled) .theme-toggle {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(247, 244, 239, 0.35);
  color: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(6px);
}

.site-header:not(.scrolled) .nav-toggle span {
  background: rgba(247, 244, 239, 0.92);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.site-header.scrolled .logo,
.site-header.scrolled .site-nav a {
  text-shadow: none;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  letter-spacing: 0.06em;
  text-transform: none;
  flex-shrink: 1;
  min-width: 0;
  max-width: calc(100vw - 7.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-end {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.theme-icon {
  display: none;
}

html[data-theme="light"] .theme-icon--moon {
  display: block;
}

html[data-theme="dark"] .theme-icon--sun {
  display: block;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding:
    calc(var(--header-h) + env(safe-area-inset-top, 0px))
    max(1rem, env(safe-area-inset-right))
    max(4.5rem, calc(1.5rem + env(safe-area-inset-bottom)))
    max(1rem, env(safe-area-inset-left));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 7, 6, 0.72) 0%,
      rgba(8, 7, 6, 0.45) 38%,
      rgba(8, 7, 6, 0.55) 62%,
      rgba(8, 7, 6, 0.82) 100%
    ),
    radial-gradient(
      ellipse 85% 70% at 50% 45%,
      rgba(8, 7, 6, 0.15) 0%,
      rgba(8, 7, 6, 0.72) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: 1.5rem 2rem;
  color: #f7f4ef;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.65),
    0 1px 6px rgba(0, 0, 0, 0.5);
  animation: fadeUp 1s var(--ease) both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e8d4b0;
  margin: 0 0 1rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: clamp(2.75rem, 10vw, 6rem);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 0.5rem;
  color: #fff;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(247, 244, 239, 0.95);
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}

.hero .btn-ghost {
  border-color: rgba(247, 244, 239, 0.55);
  color: #f7f4ef;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  text-shadow: none;
}

.hero .btn-ghost:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.hero .btn-primary {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--btn-primary-fg);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.85);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  animation: fadeUp 1s 0.5s var(--ease) both, bob 2.5s ease-in-out infinite;
}

.scroll-hint:hover {
  color: var(--accent);
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.about-frame {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  padding: 0.75rem;
  background: var(--bg-elevated);
}

.about-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  outline: none;
}

.about-carousel:focus-visible {
  box-shadow: inset 0 0 0 2px var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .about-carousel-track {
    transition: none;
  }
}

.about-carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.about-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  min-width: 100%;
}

.about-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  background: var(--bg-alt);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

.carousel-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-btn--prev {
  left: 0.5rem;
}

.carousel-btn--next {
  right: 0.5rem;
}

.about-carousel-counter {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #f7f4ef;
  background: rgba(8, 7, 6, 0.55);
  border-radius: 2rem;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.about-placeholder,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--bg-alt), var(--bg-elevated));
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 1.25rem;
}

.about-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.stats {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 1.5rem;
}

.stats li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-value {
  color: var(--text);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}

.link-arrow::after {
  content: "→";
}

.link-arrow:hover {
  gap: 0.75rem;
}

/* --- Credits --- */
.credits-list {
  display: grid;
  gap: 0;
}

.credit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.credit:first-child {
  border-top: 1px solid var(--border);
}

.credit:hover {
  background: var(--accent-dim);
  margin-inline: -1rem;
  padding-inline: 1rem;
}

.credit-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 5rem;
}

.credit-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.credit-medium {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.credit-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  grid-column: 2;
  grid-row: 1;
}

.credit-role {
  grid-column: 2;
  color: var(--text);
  margin: 0.25rem 0 0;
  font-weight: 400;
}

.credit-venue {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0.15rem 0 0;
}

/* --- Reel --- */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.reel-item {
  margin: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.reel-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
}

.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(12rem, auto);
  gap: 0.75rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
  display: flex;
  align-items: center;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.gallery-item--tall img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: unset;
  object-fit: cover;
  object-position: center;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* --- Contact --- */
.contact-inner {
  text-align: center;
}

.contact-inner h2,
.contact-inner .section-intro {
  margin-inline: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: left;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.contact-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.contact-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- Footer --- */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  :root {
    --header-h: 4rem;
  }

  .container {
    width: min(72rem, 94vw);
  }

  .section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: flex;
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem max(1rem, env(safe-area-inset-right)) 1rem max(1rem, env(safe-area-inset-left));
    max-height: calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--header-nav-mobile);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 0.25rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    color: var(--text) !important;
    text-shadow: none !important;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-content {
    padding: 1rem 0.5rem;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .hero-tagline {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 18rem;
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 2.75rem;
  }

  .scroll-hint {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-frame {
    padding: 0.5rem;
  }

  .about-carousel {
    min-height: 18rem;
  }

  .carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
  }

  .carousel-btn--prev {
    left: 0.35rem;
  }

  .carousel-btn--next {
    right: 0.35rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .credit {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .credit:hover {
    margin-inline: 0;
    padding-inline: 0;
  }

  .credit-title,
  .credit-role,
  .credit-venue {
    grid-column: 1;
  }

  .credit-title {
    font-size: 1.35rem;
  }

  .credit-meta {
    flex-direction: row;
    gap: 1rem;
    align-items: baseline;
  }

  .stats li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item--tall img {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: unset;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  .reel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .logo {
    font-size: 1.1rem;
    max-width: calc(100vw - 6.5rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-value {
    font-size: 1.1rem;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }
}
