/* ============================================================
   ROYER GOLD — Premium Gold Trading Website
   Main Stylesheet
   ============================================================ */

/* ===========================================
   1. CUSTOM PROPERTIES
   =========================================== */
:root {
  /* ── Brand Colors ── */
  --color-primary: #14382e;
  --color-primary-light: #1a4a3d;
  --color-primary-medium: #235347;
  --color-primary-dark: #0c2922;
  --color-accent: #cc9e51;
  --color-accent-light: #d4af61;
  --color-accent-dark: #b8893f;

  /* ── Background Colors ── */
  --color-bg-cream: #F5EBE0;
  --color-bg-warm: #E3D5CA;

  /* ── Text Colors ── */
  --color-text-dark: #1a1a1a;
  --color-text-light: #ffffff;
  --color-text-muted: #6b7280;

  /* ── Typography ── */
  --font-heading: 'Marcellus', serif;
  --font-body: 'Raleway', sans-serif;

  /* ── Spacing ── */
  --section-padding: 6rem;
  --section-padding-mobile: 4rem;
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* ── Borders & Radii ── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 8px 30px rgba(204, 158, 81, 0.25);

  /* ── Transitions ── */
  --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.3s var(--ease-premium);
  --transition-base: 0.5s var(--ease-premium);
  --transition-slow: 0.8s var(--ease-premium);
}


/* ===========================================
   2. RESET & BASE STYLES
   =========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Selection ── */
::selection {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

::-moz-selection {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}


/* ===========================================
   3. TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

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

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 650px;
}

.section-description--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-gold {
  color: var(--color-accent);
}

.text-white {
  color: var(--color-text-light);
}


/* ===========================================
   4. LAYOUT COMPONENTS
   =========================================== */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-padding-mobile) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── Grid Systems ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.text-center {
  text-align: center;
}


/* ===========================================
   5. HEADER
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base);
}

.header--scrolled {
  background: rgba(20, 56, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  max-height: 60px;
  width: auto;
  transition: transform var(--transition-fast);
}

.header__logo:hover img {
  transform: scale(1.03);
}

/* ── Desktop Navigation ── */
.header__nav {
  display: none;
}

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

.header__nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--color-accent);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

/* ── Mobile Menu Button ── */
.header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  gap: 5px;
  padding: 10px;
  transition: background var(--transition-fast);
  position: relative;
  z-index: 1002;
}

.header__menu-btn:hover {
  background: rgba(204, 158, 81, 0.1);
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

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

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

/* ── Mobile Menu Panel ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 400px);
  height: 100vh;
  height: 100dvh;
  background: var(--color-primary);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 120px 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-menu__social {
  display: flex;
  gap: 1rem;
}

.mobile-menu__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-menu__social a:hover {
  background: var(--color-accent);
  color: var(--color-text-light);
}


/* ===========================================
   6. HERO SECTION
   =========================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Video Background ── */
.hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__video--active {
  opacity: 1;
}

/* ── Overlays ── */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(20, 56, 46, 0.5) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero__overlay--vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* ── Content ── */
.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 var(--container-padding);
  max-width: 900px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__title .text-gold {
  display: block;
  color: var(--color-accent);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-accent-light);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__buttons .btn {
  min-width: 200px;
  text-align: center;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator__text {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-indicator__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: scrollArrowBounce 2s ease-in-out infinite;
}

.scroll-indicator__arrow i {
  font-size: 1.2rem;
  line-height: 0.9;
  background: linear-gradient(
    135deg,
    #cc9e51 0%,
    #f0d48a 25%,
    #fffbea 50%,
    #f0d48a 75%,
    #cc9e51 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: scrollArrowShimmer 2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(204, 158, 81, 0.5));
}

.scroll-indicator__arrow i:nth-child(2) {
  opacity: 0.5;
  animation-delay: 0.15s;
  margin-top: -4px;
}

@keyframes scrollArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes scrollArrowShimmer {
  0%   { background-position: 200% 200%; filter: drop-shadow(0 0 4px rgba(204, 158, 81, 0.3)); }
  50%  { background-position: 0% 0%;   filter: drop-shadow(0 0 12px rgba(204, 158, 81, 0.8)); }
  100% { background-position: 200% 200%; filter: drop-shadow(0 0 4px rgba(204, 158, 81, 0.3)); }
}


/* ===========================================
   7. ABOUT SECTION
   =========================================== */
.about {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* ── Image Side ── */
.about__image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid var(--color-accent);
  border-radius: calc(var(--radius-lg) + 4px);
  z-index: -1;
  opacity: 0.3;
}

.about__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-premium);
}

.about__image-wrapper:hover img {
  transform: scale(1.05);
}

/* ── Gold Decorative Line ── */
.about__content::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  margin-bottom: 2rem;
  border-radius: 3px;
}

.about__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ── Feature Boxes ── */
.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.about__feature:hover {
  background: var(--color-bg-cream);
  transform: translateY(-2px);
}

.about__feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cc9e51, #f0d48a, #d4af61);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(204, 158, 81, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.about__feature:hover .about__feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(204, 158, 81, 0.5);
}

.about__feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text-dark);
}

.about__feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ===========================================
   8. STATS SECTION
   =========================================== */
.stats {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 158, 81, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.stats__item {
  text-align: center;
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stats__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(204, 158, 81, 0.15), rgba(204, 158, 81, 0.05));
  border: 1px solid rgba(204, 158, 81, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.85);
}

/* Decorative separator (visible on desktop) */
.stats__item + .stats__item::after {
  display: none;
}


/* ===========================================
   9. SERVICES SECTION
   =========================================== */
.services {
  background: linear-gradient(180deg, var(--color-bg-cream) 0%, #faf6f0 100%);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.services__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.5s var(--ease-premium),
              box-shadow 0.5s var(--ease-premium);
  z-index: 1;
  overflow: hidden;
}

/* Oversized rotating gradient — traces the rectangular edges */
.services__card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 5%,
    rgba(204, 158, 81, 0.03) 10%,
    rgba(204, 158, 81, 0.06) 20%,
    rgba(204, 158, 81, 0.10) 30%,
    rgba(204, 158, 81, 0.15) 40%,
    rgba(204, 158, 81, 0.22) 50%,
    rgba(204, 158, 81, 0.32) 60%,
    rgba(204, 158, 81, 0.45) 70%,
    rgba(204, 158, 81, 0.6) 78%,
    #cc9e51 84%,
    #d4af61 88%,
    #ffe6a0 92%,
    #fffbea 95%,
    #ffe6a0 97%,
    rgba(204, 158, 81, 0.3) 99%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: cardBorderSweep 10s linear infinite paused;
  z-index: 0;
}

/* Inner mask — white fill that reveals only the border glow */
.services__card::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: calc(var(--radius-lg) - 3px);
  background: #ffffff;
  z-index: 0;
}

/* Content above masks */
.services__card > * {
  position: relative;
  z-index: 1;
}

.services__card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 40px rgba(204, 158, 81, 0.15);
}

.services__card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@keyframes cardBorderSweep {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.services__card-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FFF8E8, #FFEFC2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-accent-dark);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.services__card:hover .services__card-icon {
  transform: scale(1.1) rotate(3deg);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-text-light);
}

.services__card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.services__card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.services__card-link:hover {
  gap: 0.8rem;
  color: var(--color-accent-dark);
}


/* ===========================================
   10. GALLERY SECTION
   =========================================== */
.gallery {
  background: #ffffff;
  position: relative;
}

.gallery__scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery__scroll-container::-webkit-scrollbar {
  display: none;
}

.gallery__item {
  flex-shrink: 0;
  min-width: 280px;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-premium);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(20, 56, 46, 0.85) 0%,
    rgba(20, 56, 46, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.gallery__item-category {
  font-size: 0.85rem;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Gallery Controls ── */
.gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast);
}

.gallery__btn:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
  transform: scale(1.05);
}

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

.gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast), width var(--transition-fast);
}

.gallery__dot.active {
  background: var(--color-accent);
  width: 30px;
  border-radius: 5px;
}

/* ── Gallery Progress Bar ── */
.gallery__progress {
  width: 200px;
  height: 3px;
  background: var(--color-bg-warm);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 1rem;
}

.gallery__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 3px;
  width: 20%;
  transition: width var(--transition-fast);
}


/* ===========================================
   11. FAQ SECTION
   =========================================== */
.faq {
  background: #ffffff;
  position: relative;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition-fast);
}

.faq-item__button:hover {
  color: var(--color-accent);
}

.faq-item__question {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.faq-item__button:hover .faq-item__question {
  color: var(--color-accent);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: var(--color-text-light);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-premium), padding var(--transition-fast);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-item__answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}


/* ===========================================
   12. FOOTER
   =========================================== */
.footer {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 158, 81, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer__main {
  padding: 5rem 0 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer__brand {
  max-width: 350px;
}

.footer__logo {
  max-height: 120px;
  margin-bottom: 1.5rem;
}

.footer__brand-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

/* ── Contact Items ── */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer__contact-item:hover {
  color: var(--color-accent);
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(204, 158, 81, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  transition: background var(--transition-fast);
}

.footer__contact-item:hover .footer__contact-icon {
  background: rgba(204, 158, 81, 0.2);
}

/* ── Quick Links ── */
.footer__links-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__links-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

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

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

.footer__link::before {
  content: '›';
  font-size: 1.1rem;
  color: var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer__link:hover::before {
  opacity: 1;
}

/* ── Quick Links as Pills ── */
.footer__link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(204, 158, 81, 0.3);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: border-color var(--transition-fast),
              background var(--transition-fast),
              color var(--transition-fast);
}

.footer__pill:hover {
  border-color: var(--color-accent);
  background: rgba(204, 158, 81, 0.1);
  color: var(--color-accent);
}

/* ── Social Media Icons ── */
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--color-accent);
  color: var(--color-text-light);
  transform: translateY(-3px);
}

/* ── Map / Image Area ── */
.footer__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 250px;
  position: relative;
}

.footer__map iframe,
.footer__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  filter: brightness(0.9) contrast(1.05);
}

/* ── Footer Bottom ── */
.footer__bottom {
  background: var(--color-primary-dark);
  padding: 1.5rem 0;
}

.footer__bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__copyright a {
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

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

.footer__credits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.footer__credits a {
  color: var(--color-accent);
  transition: color var(--transition-fast);
  font-weight: 500;
}

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


/* ===========================================
   13. LIGHTBOX
   =========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out-back);
}

.lightbox.active .lightbox__image {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: background var(--transition-fast), transform var(--transition-fast);
  z-index: 10;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: background var(--transition-fast), transform var(--transition-fast);
  z-index: 10;
}

.lightbox__prev {
  left: 1.5rem;
}

.lightbox__next {
  right: 1.5rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.lightbox__next:hover {
  transform: translateY(-50%) translateX(3px);
}

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
}


/* ===========================================
   14. BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 56, 46, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-text-light);
  border-color: var(--color-accent);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  transition: left 0.7s ease;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light), #ffe6a0, var(--color-accent));
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 25px rgba(204, 158, 81, 0.4),
    0 0 40px rgba(204, 158, 81, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--color-accent-light), #ffe6a0, var(--color-accent-light));
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover::after {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline--white {
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline--white:hover {
  background: var(--color-text-light);
  color: var(--color-primary);
  border-color: var(--color-text-light);
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1.1rem 3rem;
  font-size: 0.95rem;
}


/* ===========================================
   15. GO TO TOP BUTTON
   =========================================== */
.go-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition-fast),
              visibility var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  box-shadow: 0 4px 15px rgba(204, 158, 81, 0.3);
  cursor: pointer;
}

.go-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(204, 158, 81, 0.5);
}


/* ===========================================
   16. UTILITY CLASSES
   =========================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}


/* ===========================================
   17. RESPONSIVE DESIGN
   =========================================== */

/* ── Mobile: max 767px ── */
@media (max-width: 767px) {
  /* Center header logo on mobile */
  .header .container {
    position: relative;
    justify-content: center;
  }

  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hide desktop phone in actions on mobile */
  .header__phone--desktop {
    display: none !important;
  }

  /* Position hamburger to far right */
  .header__actions {
    position: absolute;
    right: 1rem;
  }

  /* Center footer content on mobile */
  .footer__brand {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__links-title {
    text-align: center;
  }

  .footer__links-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__links-list {
    align-items: center;
    text-align: center;
  }

  .footer__contact-list {
    align-items: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  /* Center service cards on mobile */
  .services__card {
    text-align: center;
  }

  .services__card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .services__card-link {
    justify-content: center;
  }

  /* Center CTA section on mobile */
  .cta-banner > .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .cta-banner > .container > div {
    text-align: center !important;
    align-items: center !important;
  }
}

/* ── Tablet: 768px ── */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .section {
    padding: 5rem 0;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

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

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .stats__item + .stats__item::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(
      180deg,
      transparent,
      var(--color-accent),
      transparent
    );
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery__item {
    min-width: 350px;
    height: 400px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ── Desktop: 1024px ── */
@media (min-width: 1024px) {
  .section {
    padding: var(--section-padding) 0;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Header - show desktop nav, hide mobile menu button */
  .header__nav {
    display: block;
  }

  .header__menu-btn {
    display: none;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services__card {
    padding: 3rem;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
  }
}


/* ── Large Screens: 1440px ── */
@media (min-width: 1440px) {
  :root {
    --container-max: 1320px;
  }

  .hero__title {
    font-size: 5rem;
  }

  .gallery__item {
    min-width: 400px;
    height: 450px;
  }
}


/* ── Mobile fine-tuning: max 480px ── */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__card {
    padding: 2rem;
  }

  .gallery__item {
    min-width: 260px;
    height: 300px;
  }

  .footer__social {
    justify-content: center;
  }
}



/* ===========================================
   19. BODY STATES
   =========================================== */
body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

/* ===========================================
   20. HEADER HIDDEN STATE
   =========================================== */
.header--hidden {
  transform: translateY(-100%);
}

.header {
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base),
              transform var(--transition-base);
}

/* ── Hamburger line styles matching HTML ── */
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.header__menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Gallery wrapper ── */
.gallery-wrapper {
  position: relative;
}

.gallery__scroll-container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ── Section subtitle alias ── */
.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Header phone icon ── */
.header__phone {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.9rem;
  position: relative;
  background: transparent;
  border: 1px solid var(--color-accent);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  z-index: 1;
}

.header__phone i {
  position: relative;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Rotating sparkle ring */
.header__phone::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 60%,
    #ffe6a0 75%,
    #fff5d4 80%,
    #ffe6a0 85%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: phoneSparkleRotate 1.2s linear infinite paused;
  z-index: 0;
}

/* Inner mask to create ring effect */
.header__phone::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Hover state */
.header__phone:hover {
  transform: scale(1.25);
  color: #ffe6a0;
  border-color: transparent;
  box-shadow:
    0 0 15px rgba(204, 158, 81, 0.4),
    0 0 30px rgba(204, 158, 81, 0.15);
}

.header__phone:hover i {
  transform: rotate(-10deg) scale(1.1);
}

.header__phone:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.header__phone:hover::after {
  opacity: 1;
}

@keyframes phoneSparkleRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.header__phone:hover {
  color: var(--color-text-light);
}

/* ── Phone icon visibility ── */
/* Mobile phone: visible only on mobile, positioned left */
.header__phone--mobile {
  display: flex;
  position: absolute;
  left: var(--container-padding);
  z-index: 10;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Desktop phone: hidden by default */
.header__phone--desktop {
  display: none;
}

/* Hide mobile phone on tablet+ */
@media (min-width: 768px) {
  .header__phone--mobile {
    display: none;
  }
}

/* Show desktop phone on large screens */
@media (min-width: 1024px) {
  .header__phone--desktop {
    display: flex !important;
  }
}

/* ===========================================
   21. PREFERS-REDUCED-MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
