/* ─── ClearView Design Tokens ─── */
:root {
  --jet-black: #012c3c;
  --apricot-cream: #e9c997;
  --stormy-teal: #3D96A0;
  --ink-black: #041c2c;
  --ivory: #fffdef;

  /* Derived tokens */
  --bg-primary: var(--ivory);
  --bg-deep: var(--ivory);
  --bg-section: #f7f0e0;
  --bg-light: var(--ivory);
  --text-primary: var(--jet-black);
  --text-muted: rgba(1, 44, 60, 0.65);
  --text-on-dark: var(--ivory);
  --text-muted-on-dark: rgba(255, 253, 239, 0.72);
  --text-dark: var(--jet-black);
  --text-dark-muted: rgba(1, 44, 60, 0.72);
  --accent: var(--apricot-cream);
  --accent-hover: #f0d4a8;
  --teal: var(--stormy-teal);
  --teal-light: rgba(61, 150, 160, 0.15);

  --font-script: 'Great Vibes', cursive;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-label: 'Montserrat', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-soft: 0 4px 24px rgba(1, 44, 60, 0.08);
  --shadow-card: 0 8px 32px rgba(1, 44, 60, 0.1);
  --shadow-glow: 0 0 40px rgba(233, 201, 151, 0.25);

  --header-height: 80px;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);

  --transition-fast: 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-smooth: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-reveal: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ─── Layout Utilities ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section-label {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-label--on-dark {
  color: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title--dark {
  color: var(--text-dark);
}

.section-title--on-dark {
  color: var(--text-on-dark);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 560px;
}

.section-subtitle--dark {
  color: var(--text-dark-muted);
}

.section-subtitle--on-dark {
  color: var(--text-muted-on-dark);
}

.gold-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-block: 1.5rem;
}

.gold-divider--center {
  margin-inline: auto;
}

/* ─── Animation-Ready Classes ─── */
.animate-section {
  position: relative;
  will-change: opacity, transform;
}

.fade-up {
  transition:
    opacity var(--transition-reveal),
    transform var(--transition-reveal);
  will-change: opacity, transform;
}

/* Applied via JS when animation system is enabled */
.js-animate .fade-up:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

.js-animate .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  transition:
    opacity var(--transition-reveal),
    transform var(--transition-reveal),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
  will-change: opacity, transform;
}

.js-animate .reveal-card:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

.js-animate .reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-lift {
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.soft-glow {
  transition: box-shadow var(--transition-smooth);
}

.soft-glow:hover {
  box-shadow: var(--shadow-glow);
}

/* Stagger delays for reveal cards */
.reveal-card[data-delay='1'] { transition-delay: 0.1s; }
.reveal-card[data-delay='2'] { transition-delay: 0.2s; }
.reveal-card[data-delay='3'] { transition-delay: 0.3s; }
.reveal-card[data-delay='4'] { transition-delay: 0.4s; }
.reveal-card[data-delay='5'] { transition-delay: 0.5s; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #d4b07a 100%);
  color: var(--ink-black);
  border: 1px solid rgba(233, 201, 151, 0.4);
  box-shadow: 0 2px 12px rgba(233, 201, 151, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(233, 201, 151, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--jet-black);
  border: 1px solid rgba(1, 44, 60, 0.2);
}

.btn--secondary:hover {
  background: rgba(1, 44, 60, 0.04);
  border-color: var(--jet-black);
  transform: translateY(-1px);
}

.btn--secondary-dark {
  background: transparent;
  color: var(--jet-black);
  border: 1px solid rgba(1, 44, 60, 0.25);
}

.btn--secondary-dark:hover {
  background: rgba(1, 44, 60, 0.05);
  border-color: var(--jet-black);
}

.btn--light {
  color: var(--ivory);
  border-color: rgba(255, 253, 239, 0.45);
}

.btn--light:hover {
  background: rgba(255, 253, 239, 0.1);
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

/* ─── Glass Panel ─── */
.glass-panel {
  background: rgba(255, 253, 239, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(233, 201, 151, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ─── Section Backgrounds ─── */
/* Solid fills only when no photo wash; .section-has-bg clears these */
.section--dark {
  background-color: var(--ink-black);
  color: var(--text-on-dark);
}

.section--teal {
  background: linear-gradient(
    160deg,
    var(--ivory) 0%,
    #f5edd8 50%,
    rgba(61, 150, 160, 0.06) 100%
  );
  color: var(--text-primary);
}

.section--ivory {
  background-color: var(--ivory);
  color: var(--text-dark);
}

.section--subtle {
  background-color: var(--bg-section);
  color: var(--text-dark);
}

.section--gradient {
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    #f5edd8 50%,
    var(--ivory) 100%
  );
}

.section-has-bg.section--dark,
.section-has-bg.section--teal,
.section-has-bg.section--ivory,
.section-has-bg.section--subtle,
.section-has-bg.section--gradient {
  background: transparent;
}
/* ─── Shared Section Background ─── */
.section-bg {
  position: absolute;
  inset: 0;
  background-color: var(--ink-black);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section-bg--light::before {
  background: rgba(255, 253, 239, 0.75);
}

.section-bg--medium::before {
  background: rgba(255, 253, 239, 0.6);
}

.section-bg--soft::before {
  background: rgba(255, 253, 239, 0.85);
}

.section-bg--faint::before {
  background: linear-gradient(
    160deg,
    rgba(255, 253, 239, 0.88) 0%,
    rgba(245, 237, 216, 0.82) 50%,
    rgba(255, 253, 239, 0.9) 100%
  );
}

.section-bg--dark::before {
  background: rgba(4, 28, 44, 0.7);
}

.section-has-bg {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.section-has-bg > .container {
  position: relative;
  z-index: 2;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(4, 28, 44, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 201, 151, 0.16);
  transition:
    background-color var(--transition-smooth),
    backdrop-filter var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.header--scrolled {
  background: rgba(4, 28, 44, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233, 201, 151, 0.22);
  box-shadow: 0 10px 30px rgba(1, 44, 60, 0.22);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Make the logo match header height without stretching width */
.header__inner > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  object-fit: contain;
}
.header__inner > a > img {
  height:200px;
  width:200px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-muted-on-dark);
  transition: color var(--transition-fast);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.header__link:hover {
  color: var(--ivory);
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
  transform-origin: center;
}

.header__menu-btn--open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__menu-btn--open span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn--open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.header__mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 253, 239, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2rem var(--container-padding);
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99;
}

.header__mobile-nav--open {
  display: flex;
}

.header__mobile-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--jet-black);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(1, 44, 60, 0.08);
  transition: color var(--transition-fast);
}

.header__mobile-link:hover {
  color: var(--accent);
}

.header__mobile-cta {
  margin-top: 1.5rem;
  width: 100%;
}

@media (min-width: 900px) {
  .header__cta {
    display: inline-flex;
  }

  .header__menu-btn {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .header__links {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }
}
/* 
.logo--full.logo--sm .logo__image { height: 100px; }
.logo--full.logo--md .logo__image { height: 200px; }
.logo--full.logo--lg .logo__image { height: 300px; }
.logo--full.logo--xl .logo__image { height: 400px; }

.logo--wordmark.logo--sm .logo__image { height: 100px; }
.logo--wordmark.logo--md .logo__image { height: 200px; }
.logo--wordmark.logo--lg .logo__image { height: 300px; }
.logo--wordmark.logo--xl .logo__image { height: 400px; }

.logo--transparent.logo--sm .logo__image { height: 100px; }
.logo--transparent.logo--md .logo__image { height: 200px; }
.logo--transparent.logo--lg .logo__image { height: 300px; }
.logo--transparent.logo--xl .logo__image { height: 400px; } */

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--ink-black);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 28, 44, 0.82) 0%,
    rgba(4, 28, 44, 0.55) 38%,
    rgba(4, 28, 44, 0.15) 62%,
    transparent 78%
  );
  z-index: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(255, 253, 239, 0.35) 82%,
    var(--ivory) 100%
  );
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero__headline {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--ivory);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(4, 28, 44, 0.3);
}

.hero__headline em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.15em;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 253, 239, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  text-shadow: 0 1px 12px rgba(4, 28, 44, 0.25);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero__bg {
    background-position: 65% center;
  }

  .hero__bg::before {
    background: linear-gradient(
      180deg,
      rgba(4, 28, 44, 0.78) 0%,
      rgba(4, 28, 44, 0.5) 45%,
      rgba(4, 28, 44, 0.2) 70%,
      transparent 90%
    );
  }

  .hero__inner {
    align-items: flex-end;
    padding-bottom: clamp(4rem, 10vw, 6rem);
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__subheadline {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }
}

/* ─── Services ─── */
.services {
  padding-block: var(--section-padding);
}

.services__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services__header .section-subtitle {
  margin-inline: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 239, 0.92);
  border: 1px solid rgba(233, 201, 151, 0.35);
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card:hover {
  border-color: rgba(233, 201, 151, 0.25);
  box-shadow: var(--shadow-glow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(233, 201, 151, 0.1);
  border: 1px solid rgba(233, 201, 151, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: background-color var(--transition-fast);
}

.service-card:hover .service-card__icon {
  background: rgba(233, 201, 151, 0.18);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--jet-black);
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── About ─── */
.about {
  padding-block: var(--section-padding);
}

.about__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about__content {
  max-width: 520px;
}

.about__text {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about__body {
  font-size: 1rem;
  color: var(--text-dark-muted);
  line-height: 1.75;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__image-frame {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(233, 201, 151, 0.45);
  box-shadow: var(--shadow-card);
}

.about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__content {
    max-width: 100%;
    text-align: center;
    order: 2;
  }

  .about__visual {
    order: 1;
  }

  .about__image-frame {
    max-width: 360px;
    margin-inline: auto;
  }
}

/* ─── Work (Why + Video + Gallery) ─── */
.work {
  padding-block: var(--section-padding);
  color: var(--text-on-dark);
}

.work__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.work__header .section-subtitle {
  margin-inline: auto;
}

.work__reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.work__reason {
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 239, 0.08);
  border: 1px solid rgba(233, 201, 151, 0.18);
}

.work__reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: rgba(233, 201, 151, 0.12);
  border: 1px solid rgba(233, 201, 151, 0.25);
  color: var(--accent);
  font-size: 0.85rem;
}

.work__reason strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 0.35rem;
}

.work__reason span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted-on-dark);
  line-height: 1.55;
}

.work__media {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.work__video {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(233, 201, 151, 0.25);
  background: var(--ink-black);
  box-shadow: var(--shadow-card);
}

.work__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink-black);
}

.carousel {
  outline: none;
}

.carousel__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(233, 201, 151, 0.3);
  background: var(--ink-black);
  box-shadow: var(--shadow-card);
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.carousel__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__caption {
  text-align: center;
  margin-top: 1.25rem;
}

.carousel__label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-on-dark);
  margin-bottom: 0.25rem;
}

.carousel__tag {
  font-size: 0.75rem;
  color: var(--text-muted-on-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(233, 201, 151, 0.3);
  background: rgba(255, 253, 239, 0.1);
  color: var(--ivory);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.carousel__btn:hover {
  background: rgba(255, 253, 239, 0.18);
  border-color: var(--accent);
  transform: scale(1.05);
}

.carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 253, 239, 0.3);
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.carousel__dot--active {
  background: var(--accent);
  transform: scale(1.2);
}

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

  .carousel__btn:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .work__reasons {
    grid-template-columns: 1fr;
  }

  .work__media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .carousel__viewport {
    aspect-ratio: 4 / 3;
  }
}

/* ─── Quote CTA ─── */
.quote-cta {
  padding-block: var(--section-padding);
}

.quote-cta__panel {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  background: rgba(4, 28, 44, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 201, 151, 0.2);
  position: relative;
  overflow: hidden;
}

.quote-cta__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.quote-cta__headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.quote-cta__text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-muted-on-dark);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ─── Quote Form ─── */
.quote-form {
  text-align: left;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.quote-form__field--full {
  grid-column: 1 / -1;
}

.quote-form__field--reveal {
  animation: quote-field-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes quote-field-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-form__label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.quote-form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(255, 253, 239, 0.06);
  border: 1px solid rgba(233, 201, 151, 0.28);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.quote-form__input::placeholder {
  color: rgba(255, 253, 239, 0.4);
}

.quote-form__input:hover {
  border-color: rgba(233, 201, 151, 0.45);
}

.quote-form__input:focus {
  border-color: var(--accent);
  background: rgba(255, 253, 239, 0.09);
  box-shadow: 0 0 0 3px rgba(233, 201, 151, 0.15);
}

.quote-form__input[type='number'] {
  -moz-appearance: textfield;
}

.quote-form__input[type='number']::-webkit-outer-spin-button,
.quote-form__input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quote-form__choice {
  border: none;
  padding: 0;
  margin: 0;
}

.quote-form__choice .quote-form__label {
  margin-bottom: 0.65rem;
  padding: 0;
}

.quote-form__options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.quote-form__option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 5.5rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
  background: rgba(255, 253, 239, 0.05);
  border: 1px solid rgba(233, 201, 151, 0.22);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.quote-form__option:has(input:checked) {
  color: var(--ink-black);
  background: linear-gradient(135deg, var(--accent) 0%, #d4b07a 100%);
  border-color: rgba(233, 201, 151, 0.55);
}

.quote-form__option:hover {
  border-color: rgba(233, 201, 151, 0.45);
  color: var(--ivory);
}

.quote-form__option:has(input:checked):hover {
  color: var(--ink-black);
}

.quote-form__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.quote-form__submit {
  align-self: center;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 320px;
}

.quote-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.quote-form__error {
  font-size: 0.875rem;
  color: #ffb4ab;
  text-align: center;
  line-height: 1.5;
}

.quote-form__success {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  animation: quote-field-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.quote-form__success-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.quote-form__success-text {
  font-size: 1.05rem;
  color: var(--text-muted-on-dark);
  max-width: 420px;
  margin-inline: auto;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .quote-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Footer ─── */
.footer {
  padding-block: 3rem 2rem;
  border-top: 1px solid rgba(233, 201, 151, 0.12);
  background-color: var(--ink-black);
  color: var(--text-on-dark);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted-on-dark);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-muted-on-dark);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--ivory);
}

.footer__contact-item {
  font-size: 0.875rem;
  color: var(--text-muted-on-dark);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(233, 201, 151, 0.12);
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 253, 239, 0.45);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
/* ─── Admin Page ─── */
.admin {
  min-height: 100vh;
  background:
    linear-gradient(180deg, var(--ivory) 0%, #f5edd8 45%, var(--ivory) 100%);
  color: var(--text-primary);
}

.admin__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem var(--container-padding);
  border-bottom: 1px solid rgba(1, 44, 60, 0.08);
  background: rgba(255, 253, 239, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.admin__brand {
  display: inline-flex;
}

.admin__brand .logo__image {
  height: 40px;
  width: auto;
}

.admin__main {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.admin-login {
  max-width: 420px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem);
  background: rgba(255, 253, 239, 0.92);
  border: 1px solid rgba(233, 201, 151, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.admin-login__title,
.admin-dashboard__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.admin-login__text {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.admin-login__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-login__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.admin-login__label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.admin-login__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--ivory);
  border: 1px solid rgba(1, 44, 60, 0.15);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.admin-login__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61, 150, 160, 0.15);
}

.admin-login__error,
.quote-form__error {
  font-size: 0.875rem;
  color: #b42318;
  line-height: 1.5;
}

.admin-login__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.admin-dashboard__intro {
  margin-bottom: 2rem;
}

.admin-dashboard__count {
  font-size: 1rem;
  color: var(--text-muted);
}

.admin-dashboard__status {
  color: var(--text-muted);
}

.admin-empty {
  padding: 2.5rem;
  text-align: center;
  border: 1px dashed rgba(1, 44, 60, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 239, 0.7);
}

.admin-empty__hint {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.25rem;
}

.admin-card {
  padding: 1.5rem;
  background: rgba(255, 253, 239, 0.95);
  border: 1px solid rgba(233, 201, 151, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.admin-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(1, 44, 60, 0.08);
}

.admin-card__name {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.admin-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.admin-card__badge {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-black);
  background: linear-gradient(135deg, var(--accent) 0%, #d4b07a 100%);
  border-radius: 999px;
}

.admin-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.admin-card__row {
  display: grid;
  grid-template-columns: minmax(0, 120px) 1fr;
  gap: 0.75rem;
  align-items: start;
}

.admin-card__row dt {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.admin-card__row dd {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-primary);
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 999px;
}

.admin-pill--yes {
  color: #0f5132;
  background: rgba(25, 135, 84, 0.12);
}

.admin-pill--no {
  color: rgba(1, 44, 60, 0.75);
  background: rgba(1, 44, 60, 0.08);
}

@media (max-width: 520px) {
  .admin-card__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
