/* ========================================
   CyG Corredores de Seguros
   Stylesheet - Editorial / Premium
   Brand: Navy #1a2a4a + Gold #c8a96e
   ======================================== */

:root {
  /* Brand palette */
  --navy: #1a2a4a;
  --navy-deep: #111c33;
  --navy-soft: #2a3a5c;
  --gold: #c8a96e;
  --gold-light: #dcc193;
  --gold-deep: #a88848;

  /* Neutrals */
  --ink: #0e1628;
  --paper: #fbf8f2;
  --paper-warm: #f5efe4;
  --line: #e6dfd1;
  --muted: #6b7283;
  --white: #ffffff;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: 'ss01', 'ss02';
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

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

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

h4 {
  font-size: 1.2rem;
}

.italic-accent {
  font-style: italic;
  color: var(--gold-deep);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

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

p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--navy-soft);
  max-width: 58ch;
}

/* ========================================
   Layout Utilities
   ======================================== */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-dark {
  background: var(--navy);
  color: var(--paper);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--paper);
}

.section-dark p {
  color: rgba(251, 248, 242, 0.9);
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-dark .eyebrow::before {
  background: var(--gold);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ========================================
   Header / Navigation
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}

.header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 248, 242, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 500;
}

.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}

.logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s var(--ease);
}

.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 21px; }

.menu-toggle.open span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) {
  top: 16px;
  transform: rotate(-45deg);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 2rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(168, 136, 72, 0.45);
}

.btn-dark {
  background: var(--navy);
  color: var(--paper);
}

.btn-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--paper);
}

.section-dark .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.section-dark .btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ========================================
   Hero
   ======================================== */

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(200, 169, 110, 0.18), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.hero-content .eyebrow {
  margin-bottom: 2rem;
}

.hero h1 {
  margin-bottom: 2rem;
}

.hero h1 .italic-accent {
  display: inline-block;
  position: relative;
}

.hero-content .lead {
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-aside {
  position: relative;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(26, 42, 74, 0.25);
}

.hero-card-number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.hero-card-label {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero-card-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.hero-card-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.93rem;
  color: var(--navy-soft);
}

.hero-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  align-self: center;
  margin-right: 0.75rem;
}

.hero-card-list li span:last-child {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-badge {
  position: absolute;
  top: -18px;
  right: 20px;
  background: var(--navy);
  color: var(--gold);
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ========================================
   Page Header (interior pages)
   ======================================== */

.page-header {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.15), transparent 60%);
  pointer-events: none;
}

.page-header .eyebrow {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.page-header h1 {
  color: var(--paper);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.page-header .lead {
  color: rgba(251, 248, 242, 0.9);
  max-width: 62ch;
}

.breadcrumbs {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(251, 248, 242, 0.8);
  margin-bottom: 2.5rem;
}

.breadcrumbs a {
  color: var(--gold);
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.breadcrumbs span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* ========================================
   Service Cards
   ======================================== */

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(26, 42, 74, 0.2);
  border-color: var(--gold-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--paper-warm);
  color: var(--navy);
  display: grid;
  place-items: center;
  border-radius: 3px;
  margin-bottom: 2rem;
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.service-link:hover {
  color: var(--gold-deep);
}

.service-link svg {
  transition: transform 0.3s var(--ease);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ========================================
   Carriers Showcase
   ======================================== */

.carriers {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.carriers-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.carriers-header .eyebrow {
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.carriers-header .eyebrow::before,
.carriers-header .eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.carriers-header h2 {
  color: var(--paper);
  max-width: 20ch;
  margin: 0 auto;
}

.carriers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.carrier-item {
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease);
  min-height: 100px;
  position: relative;
  overflow: hidden;
}

.carrier-item.bg-dark {
  background: var(--navy-deep);
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.carrier-item img {
  width: 100%;
  max-width: 150px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}

.carrier-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.25);
}

.carrier-item.bg-dark:hover {
  border-color: var(--gold);
}

.carrier-item:hover img {
  transform: scale(1.04);
}

/* ========================================
   Split Content Sections
   ======================================== */

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

.split-image {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 8px;
}

.split-image-decoration {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  color: var(--gold);
  font-size: clamp(4rem, 12vw, 9rem);
  opacity: 0.9;
  z-index: 1;
  line-height: 0.9;
}

.split-image-label {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.split-image-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.75rem;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content .eyebrow {
  margin-bottom: 1.5rem;
}

.split-content p {
  margin-bottom: 1.25rem;
  color: var(--navy-soft);
}

.section-dark .split-content p,
.section-dark .split-content .split-stat-label {
  color: rgba(251, 248, 242, 0.9);
}

.section-dark .split-content .split-stat-num {
  color: var(--gold);
}

.section-dark .split-content .split-stats {
  border-top-color: rgba(251, 248, 242, 0.15);
}

.split-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.split-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
}

.split-stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ========================================
   Values / Features List
   ======================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin-top: 4rem;
}

.value-item {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  padding-right: 2rem;
}

.value-number {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  display: inline-block;
  font-style: italic;
}

.value-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ========================================
   Coverage Detail List
   ======================================== */

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.coverage-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease);
}

.coverage-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.coverage-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.coverage-card-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--gold-deep);
  font-style: italic;
  line-height: 1;
}

.coverage-card h3 {
  margin-bottom: 0.5rem;
}

.coverage-list {
  list-style: none;
  padding: 0;
}

.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--navy-soft);
  line-height: 1.4;
}

.coverage-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8L6.5 11L13 4.5' stroke='%23c8a96e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  margin-top: 3px;
}

/* ========================================
   CTA Band
   ======================================== */

.cta-band {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--paper);
  max-width: 22ch;
  margin: 0 auto 1.5rem;
  position: relative;
}

.cta-band p {
  color: rgba(251, 248, 242, 0.8);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  position: relative;
  font-size: 1.1rem;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ========================================
   Forms
   ======================================== */

.form-wrap {
  max-width: 720px;
}

.form-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(26, 42, 74, 0.18);
}

.form-step {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.form-card h2 {
  margin-bottom: 0.75rem;
}

.form-card > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group label .req {
  color: var(--gold-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group small {
  font-size: 0.78rem;
  color: var(--muted);
}

.form-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.form-radio {
  position: relative;
}

.form-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-radio label {
  display: block;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.form-radio input:checked + label {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-check input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.form-check a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ========================================
   Blog
   ======================================== */

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: stretch;
}

.blog-featured-image {
  background: var(--navy);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.blog-featured-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.blog-featured-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 8px;
}

.blog-featured-image-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: clamp(6rem, 16vw, 12rem);
  color: rgba(200, 169, 110, 0.5);
  line-height: 0.9;
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}

.blog-featured-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.blog-featured-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.blog-meta span {
  margin: 0 0.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(26, 42, 74, 0.18);
  border-color: var(--gold-light);
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.blog-card-image span {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
}

.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.blog-card-foot {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

/* ========================================
   Team
   ======================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.team-card {
  text-align: left;
}

.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.team-photo::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 8px;
}

.team-initials {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.team-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.team-role {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ========================================
   Contact Page
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-info h3 {
  margin-bottom: 0.5rem;
}

.contact-channels {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

.contact-channel {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}

.contact-channel:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  background: var(--paper-warm);
  color: var(--navy);
  display: grid;
  place-items: center;
  border-radius: 3px;
  flex-shrink: 0;
}

.contact-channel h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.contact-channel p,
.contact-channel a {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-channel small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.5);
  z-index: 80;
  transition: all 0.3s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 32px -6px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--navy-deep);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251, 248, 242, 0.1);
}

.footer-brand .logo {
  color: var(--paper);
  margin-bottom: 1.25rem;
}

.footer-brand .logo small {
  color: rgba(251, 248, 242, 0.7);
}

.footer-brand p {
  color: rgba(251, 248, 242, 0.85);
  font-size: 0.92rem;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(251, 248, 242, 0.85);
  font-size: 0.92rem;
}

.footer-col a {
  color: rgba(251, 248, 242, 0.85);
  font-size: 0.92rem;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(251, 248, 242, 0.75);
}

.footer-bottom a {
  color: rgba(251, 248, 242, 0.9);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ========================================
   Animations (intersection observer)
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 900px) {
  .hero-grid,
  .services-intro,
  .split,
  .blog-featured,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 2.5rem;
  }

  .hero-aside {
    max-width: 420px;
  }

  .split-image {
    aspect-ratio: 16 / 10;
    max-height: 400px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 2.5rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(26, 42, 74, 0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.25rem;
    font-family: 'Fraunces', serif;
  }

  .nav-cta {
    display: none;
  }

  .nav-links .nav-cta {
    display: inline-flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .split-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.08);
  color: rgba(251, 248, 242, 0.85);
  transition: all 0.25s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
