/* ============================================
   Sina Finke — Website
   Inspiriert von stefanie-zimmer.de
   Terracotta + Gold Palette
   ============================================ */

:root {
  --terracotta: #B8654A;
  --terracotta-dark: #9E5540;
  --terracotta-light: #D4A494;
  --terracotta-bg: #F0DDD6;
  --gold: #C9A84C;
  --gold-light: #E2CFA0;
  --gold-hover: #b8963e;
  --cream: #FBF7F4;
  --white: #ffffff;
  --dark: #2C2420;
  --dark-soft: #3D3533;
  --text: #3D3D3D;
  --text-light: #7a7170;
  --text-on-dark: #F5EDE8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --max-width: 1140px;
  --radius: 20px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--terracotta-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.6rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1.1rem; }

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--text-on-dark);
}
.btn-outline-light:hover {
  background: var(--text-on-dark);
  color: var(--dark);
}

.text-link {
  font-weight: 700;
  color: var(--terracotta);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.text-link:hover {
  color: var(--gold);
  border-color: var(--terracotta);
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--dark);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  width: 100%;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  order: 1;
}

.nav-links { order: 2; }

.nav-logo-circle { order: 3; }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
}

.nav-title {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-logo-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 1.2rem;
}

.nav-logo-img {
  width: 135%;
  height: 135%;
  object-fit: cover;
  object-position: center;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(245, 237, 232, 0.85);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  transition: background var(--transition) !important;
}
.nav-cta:hover {
  background: var(--terracotta-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   Hero — Fullwidth Image + Overlay Box
   ======================================== */
.hero {
  margin-top: 68px;
  min-height: 80vh;
  background:
    linear-gradient(135deg, rgba(44, 36, 32, 0.55), rgba(184, 101, 74, 0.4)),
    url('../images/waldundlicht-hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.hero-content {
  background: rgba(44, 36, 32, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 3.5rem 4rem;
  max-width: 720px;
  text-align: center;
}

.hero-content h1 {
  color: var(--text-on-dark);
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  line-height: 1.35;
}

.hero-content p {
  color: rgba(245, 237, 232, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-content .btn-gold {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: 5rem 2rem;
}

.section-dark {
  background: var(--dark);
  color: var(--text-on-dark);
}

.section-dark h2 { color: var(--gold); }
.section-dark p { color: var(--text-on-dark); }
.section-dark strong { color: var(--gold-light); }

.section-cream {
  background: var(--terracotta-bg);
}

/* Fullwidth Image Section (Ansatz) */
.section-fullimage {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fullimage-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fullimage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 32, 0.7);
}

.fullimage-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-on-dark);
}

.fullimage-content h2 {
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.fullimage-content p {
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.fullimage-content strong {
  color: var(--gold-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ========================================
   Two-Column Layout
   ======================================== */
.two-col {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}
.two-col-reverse > * {
  direction: ltr;
}

.two-col-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: #192033;
  border: 2px solid var(--gold);
}

.two-col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col-image img {
  width: 100%;
  display: block;
}

.two-col-image .image-placeholder {
  width: 100%;
}

.rounded-img {
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta-bg) 60%, var(--gold-light) 100%);
  border-radius: var(--radius);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.image-placeholder span {
  color: var(--terracotta-dark);
  font-size: 0.9rem;
  font-style: italic;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.4rem 1.2rem;
  border-radius: 10px;
}

.greeting {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.instagram-link {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.15rem 0.7rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  vertical-align: middle;
}
.instagram-link:hover {
  background: var(--gold);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--terracotta);
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.section-image-break {
  margin-top: 3.5rem;
  text-align: center;
}

.fullwidth-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* ========================================
   Text Block (Problem Section)
   ======================================== */
.text-block {
  max-width: var(--max-width);
  margin: 0 auto;
}

.text-block h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--gold);
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* ========================================
   Three Pillars
   ======================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pillar {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--gold);
}

.pillar-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar h3 {
  color: var(--terracotta-dark);
  margin-bottom: 0.8rem;
}

.pillars-note {
  text-align: center;
  max-width: 700px;
  margin: 2.5rem auto 0;
  color: var(--text-light);
}

/* ========================================
   Check List
   ======================================== */
.check-list {
  list-style: none;
  margin: 1.2rem 0;
}

.check-list li {
  padding: 0.35rem 0 0.35rem 1.8rem;
  position: relative;
  color: var(--text-on-dark);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ========================================
   Inline Form (Freebie)
   ======================================== */
.inline-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.inline-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: border-color var(--transition);
}

.inline-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.inline-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.small-note {
  font-size: 0.8rem;
  color: rgba(245, 237, 232, 0.5);
  margin-top: 0.6rem;
}

.placeholder-notice {
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed var(--gold);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(245, 237, 232, 0.45);
}

.section:not(.section-dark) .placeholder-notice {
  background: var(--white);
  border-color: var(--terracotta-light);
  color: var(--text-light);
}

/* ========================================
   Offer Cards
   ======================================== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--gold);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}

.offer-card:hover { transform: translateY(-5px); }

.offer-card-image {
  height: 200px;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card-image .image-placeholder {
  min-height: 200px;
  height: 100%;
  border-radius: 0;
}

.offer-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.offer-card p {
  font-size: 0.93rem;
  flex: 1;
}

.offer-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--terracotta-dark);
  margin: 0.8rem 0 0.2rem;
}

.offer-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.offer-badge-featured {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.2rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.offer-badge {
  display: inline-block;
  background: var(--terracotta-bg);
  color: var(--terracotta-dark);
  padding: 0.2rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* ========================================
   Brevo Form Overrides
   ======================================== */
.sib-form,
.sib-form * {
  box-sizing: border-box !important;
}

#sib-container,
.sib-container--large,
.sib-form-container,
.sib-form {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.sib-form .form__entry,
.sib-form .entry_block,
.sib-form .sib-input,
.sib-form .sib-form-block,
.sib-form .form__label-row,
.sib-form .entry__field,
.sib-form div,
.sib-form form,
#sib-form {
  border: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

#sib-container input.input,
#sib-container input[type="text"],
#sib-container input#EMAIL,
.sib-form input.input,
.sib-form input[type="text"] {
  background: #ffffff !important;
  border: 2px solid var(--gold) !important;
  border-radius: 50px !important;
  color: #3D3D3D !important;
  -webkit-text-fill-color: #3D3D3D !important;
  padding: 0.85rem 1.2rem !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

#sib-container input.input:focus,
.sib-form input.input:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3) !important;
}

#sib-container input.input::placeholder,
.sib-form input.input::placeholder {
  color: #aaa !important;
  -webkit-text-fill-color: #aaa !important;
}

/* ========================================
   Region Note + Kongress Section
   ======================================== */
.offer-region {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-light);
  font-size: 0.92rem;
  font-style: italic;
}

.kongress-section {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--terracotta-light);
}

.kongress-header {
  text-align: center;
  margin-bottom: 2rem;
}

.kongress-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--terracotta-dark);
  margin-bottom: 0.4rem;
}

.kongress-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.kongress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.kongress-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 2px solid var(--gold);
}

.kongress-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--terracotta-dark);
  margin-bottom: 0.6rem;
}

.kongress-card p {
  font-size: 0.88rem;
}

.kongress-card .offer-price {
  font-size: 1.3rem;
  margin-top: 0.6rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .kongress-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 2.5rem 1.3rem 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
}

.faq-item.active .faq-question::after { content: '−'; }
.faq-question:hover { color: var(--terracotta); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.3rem;
}

.faq-answer p { color: var(--text); line-height: 1.75; }

/* ========================================
   Contact
   ======================================== */
.contact-block {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact-block h2 {
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.contact-email { font-size: 1rem; }
.contact-email a {
  color: var(--gold);
  font-weight: 700;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-circle img {
  width: 135%;
  height: 135%;
  object-fit: cover;
  object-position: center;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(245, 237, 232, 0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 237, 232, 0.35);
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-page {
  padding: 7rem 2rem 4rem;
  min-height: 60vh;
}
.legal-page .container { max-width: 780px; }
.legal-page h1 { margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: 0.8rem; }
.legal-page h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-page ul, .legal-page ol { margin-left: 1.5rem; margin-bottom: 1.2rem; }
.legal-page li { margin-bottom: 0.4rem; }

/* ========================================
   Responsive: Tablet
   ======================================== */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: var(--text-on-dark); }
  .nav-cta { text-align: center; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .two-col-reverse { direction: ltr; }
  .two-col-reverse .two-col-text { order: 2; }
  .two-col-reverse .two-col-image,
  .two-col-reverse div[style*="border-radius"] { order: 1; }

  .text-columns { grid-template-columns: 1fr; gap: 0; }

  .pillars { grid-template-columns: 1fr; max-width: 450px; }

  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-content {
    padding: 2.5rem 2rem;
    margin: 0 1rem;
  }

  .hero-content h1 { font-size: 1.8rem; }
}

/* ========================================
   Responsive: Mobile
   ======================================== */
@media (max-width: 480px) {
  body { font-size: 16px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }

  .section { padding: 3rem 1.2rem; }

  .hero { min-height: 70vh; }
  .hero-content { padding: 2rem 1.5rem; }
  .hero-content h1 { font-size: 1.45rem; }

  .nav-brand-text .nav-title { font-size: 0.6rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }
  .nav-logo-circle { width: 40px; height: 40px; }

  .btn { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
  .hero-content .btn-gold { font-size: 0.9rem; padding: 0.85rem 1.8rem; }

  .inline-form { flex-direction: column; }
  .inline-form input[type="email"] { width: 100%; }

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