/* ============================================
   HANCANU IMMOBILIEN – MAIN STYLESHEET
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --text-primary: #F5F0E8;
  --text-secondary: #A89880;
  --divider: rgba(201,168,76,0.2);
  --divider-soft: rgba(201,168,76,0.1);
  --error: #D14343;
  --success: #3a8a4a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 78px;
  --container: 1280px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Lock scroll when modal/menu open */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
input, select, textarea {
  font-family: inherit;
  font-size: 16px; /* prevents iOS zoom on focus */
}
ul { list-style: none; }

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: var(--gold);
  color: #000;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  z-index: 9999;
  font-size: 13px;
  font-weight: 600;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
}

.section-pad { padding: 140px 0; }

/* ---------- Custom cursor ---------- */


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  padding-top: calc(22px + env(safe-area-inset-top));
}
.nav.scrolled {
  background: rgba(10,10,10,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 14px 56px;
  padding-top: calc(14px + env(safe-area-inset-top));
  border-bottom-color: var(--divider);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text-primary);
}
.logo-line {
  height: 1px;
  background: var(--gold);
  margin: 4px 0;
  width: 100%;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 42px;
}
.nav-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 11px 26px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold);
  color: #000;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1100;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: var(--text-primary);
  transition: all 0.3s ease;
  left: 0;
}
.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: calc(100px + env(safe-area-inset-top)) 24px calc(40px + env(safe-area-inset-bottom));
  overflow-y: auto;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  margin-bottom: 12px;
}
.mobile-menu ul a {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text-primary);
  font-weight: 300;
  transition: color 0.3s ease;
  display: block;
  padding: 4px 0;
}
.mobile-menu ul a:hover,
.mobile-menu ul a:active {
  color: var(--gold);
}
.mobile-menu-cta {
  margin-top: 8px;
}
.mobile-menu-contact {
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-contact a {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px;
}
.mobile-menu-contact a:first-child {
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.75) 60%,
    rgba(10,10,10,1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
  flex-wrap: wrap;
  justify-content: center;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero h1 span { display: block; }

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleY(0.6); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  min-height: 48px;
}
.btn-sm { padding: 12px 26px; font-size: 12px; min-height: 42px; }

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

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: #000;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--gold);
  position: relative;
  z-index: 5;
}
.stats-grid {
  display: flex;
  width: 100%;
  max-width: var(--container);
  height: 80px;
  align-items: center;
  margin: 0 auto;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(0,0,0,0.18);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: #000;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-text { font-size: 26px; }
.stat-text-sm { font-size: 20px; }
.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}

/* ============================================
   SECTION GENERAL
   ============================================ */
section { position: relative; z-index: 2; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 700px;
}

/* Fade-in observer */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.visible > * {
  animation: childUp 0.9s ease forwards;
  opacity: 0;
  animation-delay: calc(var(--i, 0) * 0.12s);
}
@keyframes childUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--bg-primary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 48px 44px;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.6);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.service-num {
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--serif);
  font-size: 64px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  font-weight: 400;
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 32px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}
.service-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  padding: 8px 0;
  min-height: 40px;
  align-items: center;
}
.service-link:hover { gap: 14px; }

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--bg-primary);
  padding: 0;
  overflow: hidden;
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.about-img {
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=900&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  will-change: background-position;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.2), rgba(10,10,10,0.5));
}
.about-content {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-primary);
}
.about-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 520px;
}
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0;
}
.trust-badges {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.badge-icon {
  color: var(--gold);
  font-size: 14px;
}

/* ============================================
   PROPERTIES
   ============================================ */
.properties { background: var(--bg-secondary); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.property-card {
  background: var(--bg-card);
  border: 1px solid var(--divider-soft);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.property-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.property-card:hover .property-img-wrap img {
  transform: scale(1.08);
}
.property-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.property-card:hover .property-overlay {
  opacity: 1;
}
.property-overlay-btn {
  background: #000;
  color: var(--gold);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #000;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  min-height: 44px;
}
.property-card:hover .property-overlay-btn {
  transform: translateY(0);
}
.property-overlay-btn:hover {
  background: var(--gold);
  color: #000;
}

.status-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.badge-neu { background: var(--success); color: #fff; }
.badge-vermietung { background: #2c5d8a; color: #fff; }
.badge-verkauf { background: var(--gold); color: #000; }

.property-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-type-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.property-type {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.property-ref {
  font-size: 10px;
  letter-spacing: 0.1em;
  font-family: 'Courier New', monospace;
  color: var(--text-secondary);
  opacity: 0.7;
}
.property-price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.1;
}
.property-addr {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.property-specs {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider-soft);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.spec {
  display: flex;
  align-items: center;
  gap: 6px;
}
.spec svg {
  color: var(--gold);
  width: 14px;
  height: 14px;
}
.property-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  margin-top: auto;
  padding: 8px 0;
  min-height: 40px;
}
.property-link:hover { gap: 14px; }

.properties-cta {
  text-align: center;
  margin-top: 64px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-primary); }
.testimonials-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-header .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 72px;
  text-align: left;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 48px 40px;
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: 14px;
  left: 32px;
  font-family: var(--serif);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  font-weight: 400;
}
.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.65;
  color: var(--text-primary);
  margin: 48px 0 32px;
  position: relative;
  z-index: 2;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-author {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.testimonial-detail {
  font-size: 12px;
  color: var(--text-secondary);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.contact-form-wrap { position: relative; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Honeypot: visually hidden but not display:none (bots fill it) */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Floating label fields */
.field {
  position: relative;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 16px;
  padding: 22px 18px 12px;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 26px;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
  color: transparent;
}
.field label {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 14px;
  color: var(--text-secondary);
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.25);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--error);
}
.field-error {
  display: block;
  color: var(--error);
  font-size: 11px;
  margin-top: 6px;
  min-height: 14px;
  letter-spacing: 0.03em;
}

/* Select specific */
.field-select {
  position: relative;
}
.field-select::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23C9A84C' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}
.field-select select {
  padding: 18px;
  cursor: pointer;
}
.field-select select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* Checkbox */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
  padding: 6px 0;
}
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-row a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit button with loader */
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: #000;
  padding: 20px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-submit:disabled {
  cursor: wait;
  opacity: 0.8;
}
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loader { display: block; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form error box */
.form-error {
  display: none;
  background: rgba(209,67,67,0.1);
  border: 1px solid var(--error);
  color: var(--text-primary);
  padding: 16px 20px;
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.5;
}
.form-error.active { display: block; }
.form-error a {
  color: var(--gold);
  text-decoration: underline;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 80px 40px;
  border: 1px solid var(--gold);
  background: var(--bg-card);
}
.form-success.active {
  display: block;
  animation: fadeUp 0.6s ease;
}
.success-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  color: var(--gold);
}
.success-check svg {
  width: 100%;
  height: 100%;
}
.success-check circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease forwards;
}
.success-check path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.4s ease 0.5s forwards;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 28px;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--divider-soft);
  transition: color 0.3s ease;
}
.info-block:hover {
  color: var(--text-primary);
}
.info-block:hover .info-icon {
  color: var(--gold-light);
}
.info-icon {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.3s ease;
}
.info-block strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours-card {
  border: 1px solid var(--divider);
  background: var(--bg-card);
  padding: 28px 32px;
  margin-top: 8px;
}
.hours-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 14px;
}
.hours-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Map with consent */
.map-wrap {
  margin-top: 8px;
  border: 1px solid var(--divider);
  background: var(--bg-card);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-consent {
  text-align: center;
  padding: 40px 28px;
}
.map-consent svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin: 0 auto 14px;
}
.map-consent p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.map-wrap iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  padding: 80px 0 32px;
  border-top: 1px solid var(--divider);
  padding-bottom: calc(32px + env(safe-area-inset-bottom));
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--divider);
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  padding: 8px 0;
}
.footer-nav a:hover { color: var(--gold); }

.social {
  display: flex;
  gap: 14px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; }

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col p,
.footer-col a {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.9;
  display: block;
  transition: color 0.3s ease;
  margin-bottom: 6px;
}
.footer-col a:hover { color: var(--gold); }

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
  font-size: 12px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bot-links a {
  margin-left: 24px;
  color: var(--text-secondary);
}
.footer-bot-links a:hover { color: var(--gold); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  transform: translateY(20px);
  bottom: calc(30px + env(safe-area-inset-bottom));
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold);
  color: #000;
}
.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.active {
  display: flex;
  animation: modalFade 0.3s ease;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 0;
}
.modal-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  padding: 64px 56px;
  margin: 0 auto;
  animation: modalSlide 0.4s ease;
}
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--divider);
  color: var(--gold);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.modal-close:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.modal-content h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 32px;
  padding-right: 48px;
}
.modal-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 400;
  margin: 28px 0 12px;
}
.modal-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}
.modal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.modal-content a:hover {
  color: var(--gold-light);
}

/* ============================================
   PAGE HERO (for subpages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 180px 24px 100px;
  text-align: center;
  background: var(--bg-primary);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.08) 0%, transparent 70%);
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .section-label {
  justify-content: center;
}
.page-hero .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 800px;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================
   PAGE TEASER GRID (homepage)
   ============================================ */
.page-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.page-teaser {
  background: var(--bg-card);
  border: 1px solid var(--divider-soft);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-teaser:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.page-teaser svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}
.page-teaser h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.page-teaser p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.page-teaser .btn {
  margin-top: auto;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--divider-soft);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.blog-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card-body {
  padding: 32px 28px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.blog-card-date {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.blog-card-category {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 4px 10px;
  font-weight: 500;
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-card-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  padding: 8px 0;
}
.blog-card-link:hover { gap: 14px; }

/* Blog article page */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  transition: gap 0.3s ease;
  padding: 8px 0;
}
.blog-back:hover { gap: 14px; }
.blog-article h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--divider);
}
.blog-article-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 48px 0 20px;
}
.blog-article-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  margin: 36px 0 16px;
}
.blog-article-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}
.blog-article-content ul,
.blog-article-content ol {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
  padding-left: 24px;
}
.blog-article-content li {
  margin-bottom: 8px;
}
.blog-article-content strong {
  color: var(--text-primary);
}
.blog-article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--bg-card);
  margin: 32px 0;
  font-style: italic;
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
}
.blog-article-content img {
  width: 100%;
  margin: 32px 0;
}

/* Author box */
.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--divider-soft);
  margin: 48px 0;
}
.author-box-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-box-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.author-box-role {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Related posts */
.related-posts {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--divider);
}
.related-posts h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Blog loading */
.blog-loading {
  text-align: center;
  padding: 80px 0;
  color: var(--text-secondary);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  counter-reset: process;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 48px 24px;
}
.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 56px;
  color: rgba(201,168,76,0.15);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--divider-soft);
  padding: 44px 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.value-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.value-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.value-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-card {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 800px;
  margin: 64px auto 0;
}
.team-img {
  width: 280px;
  height: 340px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--divider);
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.team-info .team-role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.team-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   PROPERTY FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--sans);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  padding: 80px 56px;
  text-align: center;
  margin-top: 80px;
}
.cta-banner h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  bottom: calc(30px + env(safe-area-inset-bottom));
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ============================================
   LEAD GEN POPUP
   ============================================ */
.lead-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lead-popup-overlay.active {
  display: flex;
  animation: modalFade 0.3s ease;
}
.lead-popup {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  animation: modalSlide 0.4s ease;
}
.lead-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--divider);
  color: var(--gold);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lead-popup-close:hover {
  background: var(--gold);
  color: #000;
}
.lead-popup h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.lead-popup p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}
.lead-popup .btn {
  width: 100%;
  max-width: 320px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}
.newsletter-form input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease;
}
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: #000;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--gold-light);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in-up {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg { transform: none !important; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .nav, .hero-bg, .hero-overlay, .scroll-indicator,
  .mobile-menu, .cursor, .scroll-top, .modal { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, section { page-break-inside: avoid; }
}
