/* ============================================
   Aurum Conveyancing — style.css
   ============================================ */

/* --- Custom Properties --- */
:root {
  --black: #0A0A0A;
  --gold: #C8A959;
  --gold-light: #d4b96a;
  --gold-dark: #b89843;
  --gold-glow: rgba(200, 169, 89, 0.35);
  --cream: #F5F2ED;
  --cream-dark: #ebe7df;
  --charcoal: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --text-dark: #333333;
  --text-muted: #666666;
  --text-light: #e0e0e0;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --max-width: 1200px;
  --nav-height: 90px;
  --section-padding: var(--space-2xl);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-heading h2 {
  color: var(--black);
  margin-bottom: var(--space-xs);
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-sm) auto;
  position: relative;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.gold-divider::before {
  left: -12px;
}

.gold-divider::after {
  right: -12px;
}

/* --- Fade-in Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside services grid and why grid */
.services-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.05s; }
.services-grid .fade-in:nth-child(5) { transition-delay: 0.15s; }
.services-grid .fade-in:nth-child(6) { transition-delay: 0.25s; }
.services-grid .fade-in:nth-child(7) { transition-delay: 0.05s; }
.services-grid .fade-in:nth-child(8) { transition-delay: 0.15s; }
.services-grid .fade-in:nth-child(9) { transition-delay: 0.25s; }
.services-grid .fade-in:nth-child(10) { transition-delay: 0.1s; }

/* --- CTA Button --- */
.btn-gold {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { left: -75%; }
  50% { left: 125%; }
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 25px var(--gold-glow), 0 0 60px rgba(200, 169, 89, 0.1);
  transform: translateY(-2px);
}

.btn-gold:active {
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(200, 169, 89, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  height: 72px;
  width: auto;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-links a {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
              opacity 0.25s ease;
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 169, 89, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 169, 89, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(200, 169, 89, 0.04) 0%, transparent 40%),
    linear-gradient(160deg, #0A0A0A 0%, #1a1a1a 40%, #111111 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(200, 169, 89, 0.02) 80px,
      rgba(200, 169, 89, 0.02) 81px
    );
  pointer-events: none;
}

/* Subtle animated floating gold orb */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 89, 0.04) 0%, transparent 70%);
  top: 10%;
  right: -10%;
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-30px, 20px); }
  66% { transform: translate(15px, -15px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  color: var(--cream);
  margin-bottom: var(--space-sm);
  font-weight: 500;
  letter-spacing: -0.01em;
  animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero .subline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-light);
  opacity: 0;
  margin-bottom: var(--space-lg);
  font-weight: 400;
  animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero .btn-gold {
  opacity: 0;
  animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero .gold-divider {
  margin-top: var(--space-lg);
  opacity: 0;
  animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero subline keeps its 0.8 opacity after animation */
.hero .subline {
  animation: heroSublineFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@keyframes heroSublineFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

/* ============================================
   INTRODUCTION / VALUE PROPOSITION
   ============================================ */
.intro {
  padding: var(--section-padding) var(--space-md);
  background: var(--cream);
  position: relative;
}

.intro::before {
  content: '\201C';
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.intro-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.9;
  color: var(--text-dark);
  font-weight: 500;
  font-style: italic;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding) var(--space-md);
  background: var(--black);
  position: relative;
}

/* Subtle top edge decoration */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services .section-heading h2 {
  color: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--charcoal);
  padding: var(--space-md);
  border-top: 3px solid var(--gold);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(200, 169, 89, 0.12), 0 4px 12px rgba(0,0,0,0.3);
}

.service-card:hover::after {
  border-color: rgba(200, 169, 89, 0.15);
}

.service-card h3 {
  color: var(--gold);
  margin-bottom: var(--space-sm);
  font-size: clamp(1.15rem, 1.8vw, 1.3rem);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--gold-light);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

.service-card .includes {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(200, 169, 89, 0.15);
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.65;
  font-style: italic;
}

/* Visual divider image */
.divider-image {
  background: #000000;
  line-height: 0;
  border-top: 1px solid rgba(200, 169, 89, 0.12);
  border-bottom: 1px solid rgba(200, 169, 89, 0.12);
}

.divider-image img {
  width: 100%;
  height: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding) var(--space-md);
  background: var(--cream);
}

.about .section-heading {
  margin-bottom: var(--space-sm);
}

.about-subheading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: var(--space-lg);
}

.about-grid {
  max-width: 820px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text h3 {
  color: var(--black);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.about-list {
  margin-bottom: var(--space-md);
}

.about-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-list li:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--gold-glow);
}


/* ============================================
   WHY AURUM SECTION
   ============================================ */
.why-aurum {
  padding: var(--section-padding) var(--space-md);
  background: var(--black);
  position: relative;
}

.why-aurum::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why-aurum .section-heading h2 {
  color: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md) var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateX(4px);
}

.why-item::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  margin-top: 0.4rem;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover::before {
  transform: rotate(45deg) scale(1.2);
}

.why-item span {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   BRAND STATEMENT SECTION
   ============================================ */
.brand-statement {
  padding: var(--section-padding) var(--space-md);
  background: linear-gradient(170deg, #0d0d0d 0%, #1a1713 50%, #12100d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative gold corner accents */
.brand-statement::before,
.brand-statement::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(200, 169, 89, 0.15);
}

.brand-statement::before {
  top: 2rem;
  left: 2rem;
  border-right: none;
  border-bottom: none;
}

.brand-statement::after {
  bottom: 2rem;
  right: 2rem;
  border-left: none;
  border-top: none;
}

.brand-statement-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-statement h2 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.brand-statement p {
  color: var(--cream);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.9;
  opacity: 0.85;
}

.brand-statement .brand-pillars {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(200, 169, 89, 0.2);
}

.brand-statement .brand-pillars p {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 0.6rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding) var(--space-md);
  background: var(--cream);
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 0.5rem;
}

.contact-subline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.contact-details {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.contact-details .detail {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.contact-details .detail-label {
  font-weight: 600;
  color: var(--black);
  display: inline;
}

.contact-details a {
  color: var(--gold-dark);
  transition: color 0.3s ease;
  position: relative;
}

.contact-details a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-details a:hover::after {
  width: 100%;
}

/* ============================================
   AFFILIATIONS
   ============================================ */
.affiliations {
  padding: var(--space-lg) var(--space-md);
  background: var(--cream);
  border-top: 1px solid rgba(200, 169, 89, 0.15);
}

.affiliations-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.affiliations-logos img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.affiliations-logos img:hover {
  opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: var(--black);
  text-align: center;
  border-top: 1px solid rgba(200, 169, 89, 0.12);
}

.footer p {
  color: var(--text-light);
  font-size: 0.8rem;
  opacity: 0.5;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE — Large Screens (1440px+)
   ============================================ */
@media (min-width: 1440px) {
  :root {
    --max-width: 1320px;
    --section-padding: 10rem;
  }

  html {
    font-size: 17px;
  }

  .hero-content {
    max-width: 950px;
  }

  .services-grid {
    gap: 2.5rem;
  }

}

/* Extra-large screens — 1920px+ (e.g. large monitors, TVs) */
@media (min-width: 1920px) {
  :root {
    --max-width: 1500px;
    --section-padding: 12rem;
  }

  html {
    font-size: 18px;
  }

  .hero-content {
    max-width: 1050px;
  }


  .why-grid {
    max-width: 1200px;
  }

  .brand-statement-content {
    max-width: 950px;
  }

  .contact-content {
    max-width: 800px;
  }
}

/* Ultra-wide / 4K / TV screens — 2560px+ */
@media (min-width: 2560px) {
  :root {
    --max-width: 1800px;
    --section-padding: 14rem;
  }

  html {
    font-size: 20px;
  }

  .nav-logo {
    height: 64px;
  }

  .hero-content {
    max-width: 1200px;
  }


  .why-grid {
    max-width: 1400px;
  }
}

/* ============================================
   RESPONSIVE — Tablets (1024px and below)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 6rem;
  }

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

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

}

/* ============================================
   RESPONSIVE — Small tablets / large phones (768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
    --section-padding: 5rem;
  }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    padding-bottom: var(--space-xs);
    letter-spacing: 0.1em;
  }

  .hamburger {
    display: flex;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }


  /* Why Aurum */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) var(--space-md);
  }

  /* Brand statement corner accents */
  .brand-statement::before,
  .brand-statement::after {
    width: 40px;
    height: 40px;
  }

  .brand-statement::before {
    top: 1rem;
    left: 1rem;
  }

  .brand-statement::after {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ============================================
   RESPONSIVE — Mobile phones (576px and below)
   ============================================ */
@media (max-width: 576px) {
  :root {
    --section-padding: 4rem;
  }

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

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

  .about-text h3 {
    font-size: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-details .detail {
    font-size: 0.95rem;
  }

  /* Disable hover lift on touch devices for cards */
  .service-card:hover {
    transform: none;
  }

  .why-item:hover {
    transform: none;
  }
}

/* ============================================
   RESPONSIVE — Small phones (380px and below)
   ============================================ */
@media (max-width: 380px) {
  :root {
    --section-padding: 3rem;
  }

  html {
    font-size: 14px;
  }

  .btn-gold {
    padding: 0.85rem 1.8rem;
    font-size: 0.85rem;
  }

  .nav-logo {
    height: 42px;
  }

  .intro-content p {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .brand-statement::before,
  .brand-statement::after {
    display: none;
  }
}

/* ============================================
   RESPONSIVE — Tiny phones (320px)
   ============================================ */
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .nav-logo {
    height: 36px;
  }
}

/* ============================================
   INTERACTION — Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
