:root {
  --blue: #0e3a46;
  --blue-soft: #2e5e87;
  --gold: #d4a028;
  --gold-dark: #b77f13;
  --cream: #fbf6ef;
  --cream-dark: #f0ede3;
  --sand: #e9dfc7;
  --warm-sand: #d9c7ad;
  --clay: #c65a3a;
  --olive: #5f6f58;
  --ink: #17313a;
  --muted: #5e6869;
  --white: #ffffff;
  --line: rgba(14, 58, 70, 0.1);
  --shadow-sm: 0 4px 12px rgba(14, 58, 70, 0.05);
  --shadow-md: 0 12px 30px rgba(14, 58, 70, 0.08);
  --shadow-lg: 0 20px 48px rgba(14, 58, 70, 0.12);
  --radius: 12px;
  --max: 1200px;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
  --font-script: "Dancing Script", cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background-color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background-color: var(--blue);
  box-shadow: 0 8px 24px rgba(14, 58, 70, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.navbar-logo {
  height: 62px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.brand:hover .navbar-logo {
  transform: scale(1.03);
}

.brand span {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: -2px;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 1.35rem;
  transform: translateX(42px);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Botão hambúrguer (escondido no desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
}

.header-cta {
  padding: 10px 22px;
  color: var(--white);
  background-color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(212, 160, 40, 0.2);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-cta:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 160, 40, 0.35);
}

.header-cta:active {
  transform: translateY(0);
}

/* Sections */
section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.section-heading h2 {
  color: var(--blue);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background-color: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 4px 12px rgba(14, 58, 70, 0.15);
}

.btn-primary:hover {
  background-color: #0b2d37;
  border-color: #0b2d37;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 58, 70, 0.25);
}

.btn-outline {
  color: var(--blue);
  background-color: transparent;
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background-color: rgba(14, 58, 70, 0.05);
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--white);
  background-color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 12px rgba(212, 160, 40, 0.2);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 160, 40, 0.35);
}

/* Hero Section */
.hero {
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(60px, 7vw, 90px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(14, 58, 70, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(14, 58, 70, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at top right, black, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.title-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-logo-heading {
  margin: 0;
  line-height: 1;
}

.hero-logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-copy h1 {
  color: var(--blue);
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
}

.title-sparkles {
  position: absolute;
  top: 15px;
  right: -30px;
  color: var(--gold);
}

.hero-copy p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
}

.trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  width: 90%;
  aspect-ratio: 0.82;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Floating Stats Card */
.stats-card {
  position: absolute;
  bottom: -45px;
  right: -54px;
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
  min-width: 220px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon-wrapper {
  width: 38px;
  height: 38px;
  background-color: rgba(14, 58, 70, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.stat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stat-value {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--blue);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

/* "Quem é a Silvia" Section */
.about {
  background-color: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 40px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-img-wrapper img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 0.85;
  object-fit: cover;
}



.about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-copy h2 {
  font-family: var(--font-title);
  color: var(--blue);
  font-size: 2.25rem;
  font-weight: 700;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  position: relative;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(14, 58, 70, 0.15);
}

/* Feature Icon Colors matching the image */
.about-feature-item:nth-child(1) .feat-icon-wrapper { background-color: var(--blue); }
.about-feature-item:nth-child(2) .feat-icon-wrapper { background-color: var(--clay); }
.about-feature-item:nth-child(3) .feat-icon-wrapper { background-color: var(--gold); }
.about-feature-item:nth-child(4) .feat-icon-wrapper { background-color: var(--blue-soft); }

.about-feature-item span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}



/* "Números da Comunidade" (Audiência) Section */
.audience {
  background-color: var(--cream);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 58, 70, 0.2);
}

.metric-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  background-color: rgba(198, 90, 58, 0.08);
  flex-shrink: 0;
}

/* Alternate colors for metric icons */
.metric-grid .metric-card:nth-child(even) .metric-icon-wrapper {
  color: var(--blue-soft);
  background-color: rgba(46, 94, 135, 0.08);
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 2px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

/* "Como sua marca pode aparecer aqui" (Formatos) Section */
.formats {
  background-color: var(--cream-dark);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.format-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.format-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 58, 70, 0.15);
}

.format-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Dynamic formats icons colors matching image style */
.format-card:nth-child(1) .format-icon-wrapper { background-color: var(--blue); }
.format-card:nth-child(2) .format-icon-wrapper { background-color: var(--clay); }
.format-card:nth-child(3) .format-icon-wrapper { background-color: var(--gold); }
.format-card:nth-child(4) .format-icon-wrapper { background-color: var(--blue-soft); }
.format-card:nth-child(5) .format-icon-wrapper { background-color: var(--clay); }

.format-card h3 {
  font-family: var(--font-title);
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* "Galeria Reels" Section */
.gallery {
  background-color: var(--cream);
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--white);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(212, 160, 40, 0.9), rgba(198, 90, 58, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-icon svg {
  margin-left: 2px;
}

.gallery-action {
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(14, 58, 70, 0.06);
  color: var(--blue);
  margin-bottom: 10px;
}

.gallery-title {
  font-family: var(--font-title);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery-text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: auto;
}

.gallery-link:hover {
  color: var(--blue);
}

.gallery-link svg {
  transition: transform 0.2s ease;
}

.gallery-link:hover svg {
  transform: translate(2px, -2px);
}

/* Hover effects */
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 58, 70, 0.25);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-icon {
  transform: scale(1.1);
}

@media (max-width: 950px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* "Por que fazer parceria comigo" Section */
.why {
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(14, 58, 70, 0.15);
}

.why-card:nth-child(1) .why-icon-wrapper { background-color: var(--blue); }
.why-card:nth-child(2) .why-icon-wrapper { background-color: var(--clay); }
.why-card:nth-child(3) .why-icon-wrapper { background-color: var(--gold); }

.why-card h3 {
  font-family: var(--font-title);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.manifesto {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}



/* "Música" Section */
.music {
  background-color: var(--cream);
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 100px) 0;
}

.music-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.album-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background-color: var(--blue);
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.album-box:hover img {
  transform: scale(1.04);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--gold);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 160, 40, 0.4);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}

.play-btn:hover {
  background-color: var(--gold-dark);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(212, 160, 40, 0.6);
}

.play-btn svg {
  margin-left: 3px;
  transition: transform 0.2s ease;
}

.play-btn:hover svg {
  transform: scale(1.15);
}

@media (max-width: 950px) {
  .music-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .album-box {
    margin-inline: auto;
    justify-self: center;
  }
}



/* "Vamos criar algo juntos?" (Contato) Section */
.contact {
  background-color: var(--blue);
  color: var(--white);
  padding: clamp(64px, 8vw, 84px) 0;
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-visual {
  position: relative;
}

.contact-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.contact-img-wrapper img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.contact-copy {
  padding-right: 20px;
}

.contact-title-container {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.contact-copy h2 {
  font-family: var(--font-title);
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
}

.contact-sparkles {
  position: absolute;
  top: -15px;
  right: -25px;
  color: var(--gold);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 44ch;
}

/* Address Card */
.address-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.address-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: rgba(14, 58, 70, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.address-info {
  display: flex;
  flex-direction: column;
}

.address-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.address-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  word-break: break-all;
  transition: color 0.2s ease;
}

.address-item a.address-value:hover {
  color: var(--gold-dark);
}

/* Footer Styles */
.site-footer {
  background-color: var(--blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px max(24px, calc((100vw - var(--max)) / 2)) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  line-height: 0.95;
}

.footer-logo {
  height: 62px;
  width: auto;
  display: block;
}

.footer-credit {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--white);
  opacity: 0.7;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-brand span {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
}

.footer-brand small {
  margin-top: -2px;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 1.2rem;
  transform: translateX(36px);
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  text-align: center;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--blue);
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.165, 0.84, 0.44, 1), 
              transform 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Responsive Rules */
@media (max-width: 1100px) {
  .site-header {
    padding-inline: 24px;
  }
  
  .about-inner {
    grid-template-columns: 240px 1fr 240px;
    gap: 24px;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-visual {
    display: none;
  }
  
  .format-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .format-card:nth-child(4),
  .format-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 950px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }

  .hero-img-wrapper {
    width: 80%;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-visual {
    width: 60%;
    margin-inline: auto;
  }

  .about-features {
    border-left: none;
    padding-left: 0;
    align-items: flex-start;
    width: fit-content;
    margin-inline: auto;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

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


  
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 24px 20px;
    background-color: var(--blue);
    box-shadow: 0 12px 24px rgba(14, 58, 70, 0.2);
    transform-origin: top;
    display: none;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
  }

  .header-cta {
    margin-top: 8px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 76px;
  }



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

  .contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-copy p {
    margin-inline: auto;
  }

  .address-card {
    max-width: 480px;
    margin-inline: auto;
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    padding-block: 40px;
  }
  
  .footer-brand small {
    transform: none;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-img-wrapper {
    width: 100%;
  }

  .stats-card {
    right: 0;
    bottom: -20px;
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding: 16px;
  }

  .about-visual {
    width: 90%;
  }

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

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

  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
