/* ==========================================================================
   ATELIER HONEYMOON - GLOBAL STYLESHEET
   ========================================================================== */

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

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --sand: #e8dfd0;
  --gold: #b89a6e;
  --gold-light: #d4b896;
  --dark: #1a1612;
  --text: #2c2520;
  --muted: #7a6e65;
  --serif: 'Cormorant SC', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

body, button, input, select, textarea, a, div, span, p, label {
  cursor: none !important;
}

/* Cursor */
.cursor {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999999;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 30px; height: 30px; border: 1px solid var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999998;
  transform: translate(-50%,-50%); transition: width .3s, height .3s;
}

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.6rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .4s, padding .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(250,248,244,.96);
  backdrop-filter: blur(14px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 var(--sand);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.05rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text); text-decoration: none; line-height: 1;
  transition: color .4s;
}
nav.scrolled .nav-logo { color: var(--text); }
.nav-logo span {
  display: block; font-family: var(--sans);
  font-size: .58rem; letter-spacing: .38em;
  color: var(--gold); margin-top: 3px;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,240,232,.65); text-decoration: none; transition: color .3s;
}
nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-cta {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .55rem 1.4rem; border: 1px solid var(--gold);
  background: #faf8f4f5;
  color: var(--gold); text-decoration: none; transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
nav.scrolled .nav-cta {
  background: transparent;
  color: var(--muted);
  border-color: var(--muted);
}
nav.scrolled .nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Sprachumschalter */
.lang-switch {
  background: #faf8f4f5;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-left: 1.5rem;
}
.lang-switch:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
nav.scrolled .lang-switch {
  background: transparent;
  color: var(--muted);
  border-color: var(--muted);
}
nav.scrolled .lang-switch:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Reveals */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .95s ease, transform .95s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .5s; }

/* Typography helpers */
.label { font-size: .62rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.headline { font-family: var(--serif); font-size: clamp(2.4rem,3.8vw,4rem); font-weight: 300; line-height: 1.1; color: var(--dark); }
.headline em { font-style: italic; }
.rule { width: 44px; height: 1px; background: var(--gold); margin: 1.8rem 0; }
.body-text { font-size: .9rem; line-height: 2; color: var(--muted); }

/* Buttons */
.btn { display: inline-block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; padding: 1rem 2.6rem; text-decoration: none; transition: background .3s, color .3s, transform .3s; }
.btn-dark { background: var(--dark); color: var(--cream); }
.btn-dark:hover { background: var(--gold); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(44,37,32,.2); color: var(--muted); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-outline { border: 1px solid rgba(184,154,110,.6); color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--dark); }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 640px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 4rem 6rem 5rem;
  background: var(--warm-white);
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: .62rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s ease .3s forwards;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3.2rem,5vw,5.5rem);
  font-weight: 300; line-height: 1.06; color: var(--dark); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s ease .5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: .9rem; line-height: 1.95; color: var(--muted);
  max-width: 370px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 1s ease .7s forwards;
}
.hero-actions {
  display: flex; gap: 1.5rem; align-items: center;
  opacity: 0; animation: fadeUp 1s ease .9s forwards;
}

.hero-visual { position: relative; overflow: hidden; }
.hero-visual .bg-img {
  position: absolute; inset: 0;
  background-image: url('/images/bild_1.webp');
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: zoomIn 2s ease forwards;
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 18%);
  z-index: 1;
}
.hero-bali-label {
  position: absolute; bottom: 3.5rem; right: 3rem; z-index: 3;
  font-family: var(--serif); font-size: clamp(5rem,10vw,9rem);
  font-weight: 300; font-style: italic;
  color: rgba(184,154,110,.12); line-height: 1; user-select: none;
  opacity: 0; animation: fadeUp 1.2s ease 1.1s forwards;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 5rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp 1s ease 1.3s forwards;
}
.scroll-bar { width: 36px; height: 1px; background: var(--gold); }
.hero-scroll-hint span { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--dark); padding: 2.5rem 5rem;
  display: flex; gap: 4rem; align-items: center;
}
.intro-strip p {
  font-family: var(--serif); font-size: clamp(1rem,1.4vw,1.25rem);
  font-style: italic; font-weight: 300; color: rgba(245,240,232,.55); line-height: 1.7;
}
.intro-strip .gold-line { width: 1px; height: 48px; background: rgba(184,154,110,.4); flex-shrink: 0; }
.intro-strip .contact-mini { flex-shrink: 0; text-align: right; }
.intro-strip .contact-mini a {
  display: block; font-size: .72rem; letter-spacing: .15em;
  color: var(--gold); text-decoration: none; margin-bottom: .4rem;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 9rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.phil-text .body-text { margin-bottom: 1.2rem; }
.phil-highlight {
  margin-top: 2.5rem; padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold); background: var(--cream);
}
.phil-highlight p {
  font-family: var(--serif); font-size: 1.25rem;
  font-style: italic; font-weight: 300; color: var(--text); line-height: 1.6;
}
.phil-visual { position: relative; height: 580px; }
.pv-main {
  position: absolute; top: 0; right: 0; width: 82%; height: 460px;
  background-image: url('/images/bild_2.webp');
  background-size: cover; background-position: center;
}
.pv-accent {
  position: absolute; bottom: 0; left: 0; width: 52%; height: 290px;
  background-image: url('/images/bild_2.webp');
  background-size: cover; background-position: center;
  outline: 8px solid var(--warm-white);
}
.pv-tag {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--gold); padding: .5rem 1.1rem;
  font-size: .58rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--dark); font-weight: 500;
}

/* ── BALI BANNER ── */
.bali-banner { height: 65vh; min-height: 420px; position: relative; overflow: hidden; }
.bali-banner .bg-img {
  position: absolute; inset: 0;
  background-image: url('/images/bild_4.webp');
  background-size: cover; background-position: center;
}
.bali-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,22,18,.15) 0%, rgba(26,22,18,.55) 100%);
}
.bali-banner-text { position: absolute; bottom: 4rem; left: 5rem; z-index: 2; }
.bali-banner-text .label { color: var(--gold-light); }
.bali-banner-text h2 {
  font-family: var(--serif); font-size: clamp(2.5rem,5vw,5rem);
  font-weight: 300; color: var(--cream); line-height: 1.1;
}
.bali-banner-text h2 em { font-style: italic; }

/* ── BALI OFFERS ── */
.bali-offer { padding: 9rem 5rem; background: var(--cream); }
.bali-offer-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: end; margin-bottom: 5rem;
}
.offer-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--sand); border: 1px solid var(--sand);
}
.offer-card {
  background: var(--cream); padding: 0;
  transition: background .4s; position: relative; overflow: hidden;
}
.offer-card:hover { background: var(--warm-white); }
.offer-card::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .5s ease;
}
.offer-card:hover::after { transform: scaleX(1); }
.offer-img {
  width: 100%; height: 220px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.offer-img-1 { background-image: url('/images/bild_5.webp'); }
.offer-img-2 { background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=700&q=80&auto=format&fit=crop'); }
.offer-img-3 { background-image: url('/images/bild_7.webp'); }
.offer-text { padding: 2.5rem 2.2rem; }
.offer-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: rgba(184,154,110,.2); line-height: 1; margin-bottom: .5rem; }
.offer-title { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--dark); margin-bottom: .8rem; }
.offer-desc { font-size: .87rem; line-height: 1.85; color: var(--muted); }

/* ── PROCESS ── */
.process { padding: 9rem 5rem; background: var(--dark); }
.process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start; }
.process .headline { color: var(--cream); }
.process-intro .body-text { color: rgba(245,240,232,.5); margin-bottom: 1.2rem; }
.steps { margin-top: 1rem; }
.step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 1.5rem; padding: 2.2rem 0;
  border-bottom: 1px solid rgba(245,240,232,.08);
  position: relative;
}
.step::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1px; background: var(--gold); transition: width .6s ease;
}
.step:hover::after { width: 100%; }
.step-n { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; color: rgba(184,154,110,.2); line-height: 1; padding-top: .3rem; }
.step-name { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.step-desc { font-size: .87rem; line-height: 1.85; color: rgba(245,240,232,.45); }

/* ── HOTELS ── */
.hotels { padding: 9rem 5rem; background: var(--warm-white); }
.hotels-header { margin-bottom: 5rem; }
.hotels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--sand); }
.hotel-card { position: relative; overflow: hidden; background: var(--dark); }
.hotel-bg {
  height: 480px; background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.hotel-card:hover .hotel-bg { transform: scale(1.06); }
.hotel-bg-1 { background-image: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=900&q=80&auto=format&fit=crop'); }
.hotel-bg-2 { background-image: url('/images/bild_9.webp'); }
.hotel-bg-3 { background-image: url('/images/bild_10.webp'); }
.hotel-bg-4 { background-image: url('/images/bild_11.webp'); }
.hotel-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 2.5rem 2.5rem;
  background: linear-gradient(to top, rgba(26,22,18,.92) 0%, transparent 100%);
}
.hotel-region { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.hotel-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--cream); margin-bottom: .5rem; line-height: 1.2; }
.hotel-vibe { font-size: .7rem; letter-spacing: .12em; color: rgba(245,240,232,.45); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 9rem 5rem; background: var(--cream); }
.testi-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 8rem; align-items: start; }
.testi-sticky { position: sticky; top: 8rem; }
.testi-body { display: flex; flex-direction: column; gap: 2.5rem; }
.testi-card { padding: 3rem; border: 1px solid var(--sand); background: var(--warm-white); transition: border-color .4s; }
.testi-card:hover { border-color: var(--gold); }
.testi-qm { font-family: var(--serif); font-size: 4.5rem; font-weight: 300; color: var(--sand); line-height: .6; margin-bottom: 1.4rem; display: block; }
.testi-stars { color: var(--gold); font-size: .8rem; margin-bottom: 1.2rem; }
.testi-quote { font-family: var(--serif); font-size: 1.15rem; font-style: italic; font-weight: 300; line-height: 1.75; color: var(--text); margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background-size: cover; background-position: center; background-color: var(--sand);
}
.av1 { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=120&q=80&auto=format&fit=crop'); }
.av2 { background-image: url('https://images.unsplash.com/photo-1554151228-14d9def656e4?w=120&q=80&auto=format&fit=crop'); }
.testi-name { font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin-bottom: .2rem; }
.testi-trip { font-size: .7rem; color: var(--gold); }

/* ── KOOPERATIONEN (COLLAB) ── */
.collab { padding: 9rem 5rem; background: var(--dark); }
.collab-head { max-width: 600px; margin: 0 auto 5rem; text-align: center; }
.collab-head .headline { color: var(--cream); }
.collab-head .rule { margin: 1.8rem auto; }
.collab-head .body-text { color: rgba(245,240,232,.5); }
.collab-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid rgba(245,240,232,.08); }
.pillar { padding: 3rem 2.5rem; border-right: 1px solid rgba(245,240,232,.08); transition: background .4s; }
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(245,240,232,.04); }
.pillar-icon { width: 34px; height: 34px; border: 1px solid rgba(184,154,110,.4); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.pillar-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.pillar-title { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.pillar-desc { font-size: .85rem; line-height: 1.85; color: rgba(245,240,232,.4); }

/* ── CTA ── */
.cta-section { height: 80vh; min-height: 480px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1514282401047-d79a71a590e8?w=1600&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(26,22,18,.62); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; padding: 0 2rem; }
.cta-inner .label { color: var(--gold-light); }
.cta-inner .headline { color: var(--cream); font-size: clamp(2.5rem,4.5vw,4.5rem); margin-bottom: 1.5rem; }
.cta-inner .body-text { color: rgba(245,240,232,.65); margin-bottom: 3rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #120f0c; padding: 5rem 5rem 3rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(245,240,232,.07); margin-bottom: 3rem; }
.footer-brand .logo { font-family: var(--serif); font-size: 1rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,240,232,.8); margin-bottom: 1.4rem; display: block; }
.footer-brand p { font-size: .83rem; line-height: 1.9; color: rgba(245,240,232,.3); max-width: 280px; }
.footer-brand .company { font-size: .72rem; color: rgba(245,240,232,.2); margin-top: 1.8rem; line-height: 1.7; }
.fcol-title { font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.flinks { list-style: none; }
.flinks li { margin-bottom: .75rem; }
.flinks a { font-size: .82rem; color: rgba(245,240,232,.35); text-decoration: none; transition: color .3s; }
.flinks a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .73rem; color: rgba(245,240,232,.18); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed; bottom: 2rem; left: 2rem; right: 2rem; max-width: 480px;
  background: var(--dark); color: var(--cream); padding: 1.8rem 2rem; z-index: 10000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); border: 1px solid var(--gold);
  display: none; flex-direction: column; gap: 1.2rem;
  cursor: none;
}
.cookie-banner h4 { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-light); font-weight: 400; }
.cookie-banner p { font-size: 0.8rem; line-height: 1.6; color: rgba(245,240,232,0.75); }
.cookie-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-btns button { font-size: 0.65rem; padding: 0.7rem 1.2rem; cursor: none; border: none; font-family: var(--sans); letter-spacing: .15em; text-transform: uppercase; }

.cookie-modal {
  position: fixed; inset: 0; background: rgba(26,22,18,0.8); backdrop-filter: blur(8px);
  z-index: 10001; display: none; align-items: center; justify-content: center; padding: 2rem;
  cursor: none;
}
.cookie-modal-content {
  background: var(--warm-white); color: var(--text); padding: 2.5rem; max-width: 540px;
  width: 100%; border: 1px solid var(--sand); max-height: 90vh; overflow-y: auto;
  cursor: none;
}
.cookie-option { display: flex; justify-content: space-between; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--sand); gap: 1.5rem; }
.cookie-option-info h5 { font-size: 0.85rem; margin-bottom: 0.3rem; color: var(--dark); letter-spacing: 0.05em; text-transform: uppercase; }
.cookie-option-info p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.cookie-option input[type="checkbox"] { accent-color: var(--gold); width: 18px; height: 18px; cursor: none; margin-top: 0.2rem; }

/* Legal Pages Styling */
.legal-page {
  padding: 11rem 5rem 6rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}
.legal-page h1 { font-family: var(--serif); font-size: 3rem; font-weight: 300; margin-bottom: 1rem; color: var(--dark); }
.legal-page h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin: 2.5rem 0 1rem; color: var(--dark); }
.legal-page p { font-size: 0.92rem; line-height: 1.85; color: var(--muted); margin-bottom: 1rem; }
.legal-page ul { margin-left: 1.5rem; margin-bottom: 1.5rem; color: var(--muted); line-height: 1.8; }

/* Keyframe Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes zoomIn { from { transform:scale(1.08); } to { transform:scale(1); } }

/* Contact Form Specific Styling */
.contact-section {
  padding: 9rem 5rem;
  background: var(--cream);
  border-top: 1px solid var(--sand);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  color: var(--dark);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--warm-white);
}

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

/* Honeypot hidden input */
.hp-field {
  display: none !important;
  visibility: hidden !important;
}

/* Form Status Messages */
.form-response {
  padding: 1.2rem;
  font-size: 0.85rem;
  line-height: 1.6;
  display: none;
}
.form-response.success {
  display: block;
  background: #f0f7f4;
  border: 1px solid #b2d8c6;
  color: #275641;
}
.form-response.error {
  display: block;
  background: #fdf2f2;
  border: 1px solid #f5c6c6;
  color: #8a2424;
}
