@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Great+Vibes&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================================
   PALETTE
   The whole site is driven by the three "--navy" variables
   below (the names are historical — they now hold the estate
   green). To change the palette, replace just these three
   values. Alternates:

     Original navy:        #1B2A4A  #131F38  #2A3A5C
     Sage estate (lighter): #3C6B52  #2B5240  #4A7D61
   ========================================================= */
:root {
  --navy: #2E5944;
  --navy-deep: #1F4234;
  --navy-soft: #3D6B53;
  --gold: #C9A84C;
  --gold-light: #E0C572;
  --gold-soft: #F5EDD6;
  --champagne: #F8F4EA;
  --cream: #FBF9F4;
  --charcoal: #2B2B2B;
  --gray: #6B6B6B;
  --gray-light: #E8E5DD;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(46, 89, 68, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 89, 68, 0.10);
  --shadow-lg: 0 20px 50px rgba(46, 89, 68, 0.14);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ========== LANGUAGE TOGGLE ========== */
html[lang="en"] [data-lang="es"],
html[lang="es"] [data-lang="en"] { display: none !important; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(201, 168, 76, 0.06);
}
.lang-toggle button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 7px 13px;
  line-height: 1;
  transition: var(--transition);
}
.lang-toggle button:hover { color: var(--gold); }
.lang-toggle button.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
}
.lang-toggle button:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -2px;
}

/* ========== ELLIES BANNER ========== */
.top-banner {
  background: var(--navy-deep);
  color: var(--gold-light);
  text-align: center;
  padding: 9px 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}
.top-banner .dot { color: var(--gold); margin: 0 8px; }

/* ========== NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.nav-brand span { color: var(--gold); font-style: italic; }

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(46, 89, 68, 0.92) 0%, rgba(31, 66, 52, 0.85) 100%),
    radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.18), transparent 60%),
    var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 32px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 8px 0;
  position: relative;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-eyebrow::before { right: calc(100% + 16px); }
.hero-eyebrow::after { left: calc(100% + 16px); }

.hero h1 {
  font-size: clamp(42px, 6.5vw, 76px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--white);
}

.btn-light:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ========== SECTION BASE ========== */
section { padding: 110px 0; }

.section-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 4.5vw, 52px);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-intro {
  color: var(--gray);
  font-size: 17px;
  max-width: 660px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-intro { margin: 0 auto; }

/* ========== ABOUT ========== */
.about { background: var(--cream); position: relative; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-photo {
  width: 360px; height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--champagne) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.1em;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

.about-photo::after {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  bottom: -10px; right: -10px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.08;
  z-index: -1;
}

.ellies-medallion {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--navy);
  color: var(--gold);
  padding: 14px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold);
  text-align: center;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

.ellies-medallion .star { color: var(--gold); margin: 0 3px; }
.ellies-medallion .year { display: block; font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; font-weight: 500; letter-spacing: 0.05em; margin-top: 2px; }

.about-text h2 { margin-bottom: 24px; }

.about-text p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}

.credential { flex: 1; }

.credential-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.credential-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ========== SIGNATURE ========== */
.signature {
  font-family: 'Great Vibes', cursive;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-top: 28px;
  transform: rotate(-2deg);
  display: inline-block;
}

/* ========== SERVICES ========== */
.services { background: var(--white); position: relative; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  padding: 48px 40px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.service-card:hover {
  background: var(--white);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.service-icon {
  width: 64px; height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--champagne));
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
}

.icon-key { width: 22px; height: 22px; position: relative; }
.icon-key::before {
  content: ''; position: absolute;
  width: 14px; height: 14px;
  border: 2.5px solid var(--navy);
  border-radius: 50%; top: 0; left: 0;
}
.icon-key::after {
  content: ''; position: absolute;
  width: 12px; height: 2.5px;
  background: var(--navy);
  top: 6px; left: 12px;
  box-shadow: 8px 4px 0 -1px var(--navy), 4px 4px 0 -1px var(--navy);
}

.icon-tag { width: 22px; height: 22px; position: relative; transform: rotate(-45deg); }
.icon-tag::before {
  content: ''; position: absolute;
  width: 18px; height: 18px;
  border: 2.5px solid var(--navy);
  top: 0; left: 0;
  border-radius: 2px 2px 2px 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%, 0 65%);
}
.icon-tag::after {
  content: ''; position: absolute;
  width: 5px; height: 5px;
  border: 2px solid var(--navy);
  border-radius: 50%; top: 4px; left: 4px;
}

.icon-globe { width: 22px; height: 22px; position: relative; }
.icon-globe::before {
  content: ''; position: absolute; inset: 0;
  border: 2.5px solid var(--navy); border-radius: 50%;
}
.icon-globe::after {
  content: ''; position: absolute; inset: 0;
  border: 2.5px solid var(--navy); border-radius: 50%;
  transform: scaleX(0.4);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.icon-chat { width: 22px; height: 22px; position: relative; }
.icon-chat::before {
  content: ''; position: absolute;
  width: 18px; height: 14px;
  border: 2.5px solid var(--navy);
  border-radius: 4px;
  top: 1px; left: 0;
}
.icon-chat::after {
  content: ''; position: absolute;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--navy);
  bottom: 1px; left: 4px;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 500;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  transition: var(--transition);
}

.service-cta::after {
  content: '\2192';
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-cta { color: var(--gold); }
.service-card:hover .service-cta::after { transform: translateX(4px); }

/* ========== RECOGNITION SECTION ========== */
.recognition {
  background: var(--white);
  padding: 90px 0;
  position: relative;
}

.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.recognition-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.recognition-image {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.recognition-image:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 24px 60px rgba(46, 89, 68, 0.18);
}

.recognition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Elegant text-based ELLIES card (placeholder until the real graphic is added) */
.recognition-placeholder {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--cream) 50%, var(--gold-soft) 100%);
  border: 6px solid var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.ellies-card {
  text-align: center;
  color: var(--navy);
  width: 100%;
}

.ellies-card-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.ellies-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 32px;
}

.ellies-card-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.ellies-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}

.ellies-card-region {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gray);
}

.recognition-image-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--gold-soft), var(--champagne));
  border-radius: 4px;
  transform: rotate(-3deg) translate(-12px, 12px);
  z-index: 0;
  opacity: 0.6;
}

.recognition-image {
  position: relative;
  z-index: 1;
}

.recognition-text h2 {
  font-size: clamp(34px, 4vw, 46px);
  margin-bottom: 22px;
}

.recognition-text h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.recognition-text p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.recognition-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.6;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  margin: 28px 0;
}

.recognition-meta {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
}

.recognition-meta-item {
  flex: 1;
  min-width: 120px;
}

.recognition-meta-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.recognition-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}

/* ========== BROWSE LISTINGS (IDX) ========== */
.browse {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.browse::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.browse::after {
  content: '';
  position: absolute;
  top: 50%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.browse-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.browse-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.browse h2 {
  font-size: clamp(36px, 4.5vw, 54px);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 24px;
}

.browse h2 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.browse-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.browse-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  flex-wrap: wrap;
}

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

.browse-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.browse-stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.browse-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Featured listing cards inside browse section */
.featured-listings {
  max-width: 1140px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.featured-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.featured-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.featured-photo img + .featured-placeholder { display: none; }

.featured-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 30%, rgba(201, 168, 76, 0.18) 100%);
}

.featured-photo::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 11px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  z-index: 1;
  font-family: 'Inter', sans-serif;
}

.featured-badge.sold { background: var(--white); color: var(--navy); }
.featured-badge.contract { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }

.featured-body {
  padding: 24px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}

.featured-address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 18px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.featured-specs {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  margin-bottom: 18px;
}

.featured-spec {
  flex: 1;
  text-align: center;
}

.featured-spec-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}

.featured-spec-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.featured-link {
  display: block;
  text-align: center;
  padding: 11px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  border-radius: 2px;
  text-decoration: none;
  margin-top: auto;
}

.featured-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.browse-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
}

/* ========== CAFECITO SECTION ========== */
.cafecito {
  background:
    linear-gradient(135deg, var(--champagne) 0%, var(--gold-soft) 100%);
  position: relative;
  overflow: hidden;
}

.cafecito::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
  pointer-events: none;
}

.cafecito::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
  pointer-events: none;
}

.cafecito-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.cafecito-cup {
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CSS coffee cup icon */
.cup-shape {
  width: 130px;
  height: 110px;
  border: 2.5px solid var(--navy);
  border-radius: 0 0 60px 60px;
  border-top: none;
  position: relative;
  background: var(--white);
}

.cup-shape::before {
  content: '';
  position: absolute;
  top: -2.5px;
  left: -2.5px;
  right: -2.5px;
  height: 6px;
  background: var(--navy);
  border-radius: 4px 4px 0 0;
}

.cup-handle {
  position: absolute;
  width: 32px;
  height: 50px;
  border: 2.5px solid var(--navy);
  border-left: none;
  border-radius: 0 30px 30px 0;
  right: -32px;
  top: 25px;
}

.cup-saucer {
  position: absolute;
  width: 180px;
  height: 12px;
  background: var(--navy);
  border-radius: 50%;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.85;
}

.steam {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.steam span {
  display: block;
  width: 3px;
  height: 32px;
  background: var(--gold);
  border-radius: 4px;
  opacity: 0.6;
  animation: steam 2.5s ease-in-out infinite;
}

.steam span:nth-child(2) { animation-delay: 0.4s; height: 26px; margin-top: 4px; }
.steam span:nth-child(3) { animation-delay: 0.8s; height: 30px; margin-top: 2px; }

@keyframes steam {
  0%, 100% { opacity: 0.3; transform: translateY(0) scaleY(1); }
  50% { opacity: 0.8; transform: translateY(-6px) scaleY(1.15); }
}

.cafecito-circle-bg {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate 60s linear infinite;
}

.cafecito-circle-bg::before {
  content: '\2615';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.cafecito-text h2 { margin-bottom: 20px; }

.cafecito-spanish {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 500;
}

.cafecito-text p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.cafecito-text .btn { margin-top: 12px; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 40px; right: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 280px;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.testimonial {
  background: var(--cream);
  padding: 44px 36px;
  border-radius: 4px;
  position: relative;
  border: 1px solid transparent;
  transition: var(--transition);
}

.testimonial:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
  display: block;
  height: 30px;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
  border-top: 1px solid var(--gray-light);
  padding-top: 18px;
}

/* ========== BILINGUAL CTA ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 50px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
}

.cta-es {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 44px;
}

.cta-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  opacity: 0.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact { background: var(--cream); }

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 64px 56px;
  border-radius: 4px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-card h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-card > p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--gray-light);
  text-align: left;
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--champagne));
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-phone {
  width: 16px; height: 16px;
  border: 2px solid var(--navy);
  border-radius: 4px 4px 6px 6px;
  position: relative;
}
.icon-phone::before {
  content: ''; position: absolute;
  top: 2px; left: 2px; right: 2px; height: 2px;
  background: var(--navy);
}

.icon-mail {
  width: 18px; height: 14px;
  border: 2px solid var(--navy);
  border-radius: 2px;
  position: relative;
}
.icon-mail::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  border-top: 7px solid var(--navy);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  width: 0; height: 0; margin: 0 auto;
}

.contact-method-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-method-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
}

.douglas-elliman-logo {
  margin: 32px auto 24px;
  padding: 24px;
  border: 1px solid var(--gray-light);
  background: var(--cream);
  border-radius: 2px;
  max-width: 360px;
}

.de-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.32em;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 500;
}

.de-logo-sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px;
}

.bilingual-note {
  margin-top: 24px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--gold-soft), var(--champagne));
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--navy);
  border-radius: 2px;
  text-align: left;
}

.bilingual-note strong { font-weight: 600; letter-spacing: 0.04em; }

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h4 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-brand .gold-text {
  color: var(--gold-light);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}

.footer-ellies {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

/* ========== SOCIAL LINKS ========== */
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 8px;
}

.social-row-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray, #6B6B6B);
  margin-right: 4px;
  font-weight: 500;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--navy);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

/* Footer variant — lighter for dark background */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.footer-social .social-link {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(201, 168, 76, 0.35);
  width: 34px;
  height: 34px;
}
.footer-social .social-link svg {
  width: 15px;
  height: 15px;
}
.footer-social .social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.fair-housing-logo {
  width: 64px; height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  text-align: center;
  line-height: 1.2;
  padding: 6px;
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p { line-height: 1.6; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .about-grid, .cafecito-grid, .recognition-grid { gap: 56px; }
  .featured-listings { gap: 20px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }

  .top-banner { font-size: 10px; padding: 8px 16px; letter-spacing: 0.12em; }

  .nav-inner { padding: 16px 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-md);
  }

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

  .nav-links li {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-links li:last-child { border-bottom: none; padding-top: 18px; }

  .menu-toggle { display: flex; }
  .nav-badge { display: inline-block; align-self: flex-start; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 60px 24px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }

  .about-grid, .cafecito-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .recognition-quote { text-align: left; }
  .recognition-meta { justify-content: center; }

  .about-photo { width: 280px; height: 280px; font-size: 16px; }
  .ellies-medallion { font-size: 9px; padding: 10px 14px; }
  .ellies-medallion .year { font-size: 14px; }

  .about-credentials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .contact-card { padding: 40px 24px; }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonials::before { font-size: 180px; right: 20px; }

  .browse-stats { gap: 32px; }
  .browse-stat-num { font-size: 30px; }

  .featured-listings {
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .nav-brand { font-size: 22px; }
  section { padding: 64px 0; }
  .section-header { margin-bottom: 48px; }
  .about-photo { width: 240px; height: 240px; }
  .cafecito-cup { transform: scale(0.85); }
}

/* Hero entrance animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.8s ease 0.1s both; }
.hero h1 { animation: fadeUp 0.8s ease 0.3s both; }
.hero-sub { animation: fadeUp 0.8s ease 0.5s both; }
.hero-buttons { animation: fadeUp 0.8s ease 0.7s both; }

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #FFFFFF;
  color: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(31, 66, 52, 0.18);
  padding: 16px 18px;
  display: none;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  animation: cookieBannerUp 0.35s ease-out;
}
.cookie-banner.is-visible { display: block; }

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

.cookie-banner-text {
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.cookie-banner-text strong {
  color: var(--navy);
  font-weight: 600;
}
.cookie-banner-text a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--gold); }

.cookie-banner-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  flex: 1;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn:hover {
  background: var(--gold-soft, #F5EDD6);
}
.cookie-btn-primary {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
}
.cookie-btn-primary:hover {
  background: var(--navy-deep, #1F4234);
  border-color: var(--navy-deep, #1F4234);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px 16px;
  }
}

/* =========================================================
   MULTI-PAGE ADDITIONS
   ========================================================= */

/* Active nav link (current page) */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Compact page header for interior pages */
.page-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(46, 89, 68, 0.94) 0%, rgba(31, 66, 52, 0.90) 100%),
    radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.16), transparent 60%),
    var(--navy);
  color: var(--white);
  text-align: center;
  padding: 96px 32px 84px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero h1 {
  color: var(--white);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 62px);
  margin: 0;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; font-weight: 400; }
.page-hero-sub {
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .page-hero { padding: 72px 24px 64px; }
}
