/* ============================================================
   La Scribe du Nil — style.css
   ============================================================ */

/* ---- Selbst gehostete Schriften (kein Google-Fonts-Request, keine IP-Übertragung an Google) ---- */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('./assets/fonts/cinzel.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('./assets/fonts/cormorant-garamond-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('./assets/fonts/cormorant-garamond-italic.woff2') format('woff2');
}

/* ---- Animationen ---- */

@keyframes twinkle {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* ---- Reset / Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #150c2e 0%, #0c0a1f 35%, #1a0e12 70%, #05040d 100%);
  color: #f2e9d8;
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ---- Globaler Sternenhimmel (fixed hinter allem) ---- */
.sky-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(88, 54, 140, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 10%, rgba(43, 92, 130, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, #1c2340 0%, transparent 55%);
  overflow: hidden;
}

.sky-stars .star {
  position: absolute;
  border-radius: 50%;
  background: #f2e9d8;
  box-shadow: 0 0 6px 1px rgba(232, 192, 125, 0.8), 0 0 14px 3px rgba(205, 162, 86, 0.4);
  animation: twinkle ease-in-out infinite;
}


/* Goldener Boden-Schimmer */
.sky-stars::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 35%;
  background: radial-gradient(ellipse at center bottom, rgba(205,162,86,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Sternschnuppen Canvas ---- */
#shooting-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ---- Wrapper ---- */
.page-wrapper {
  position: relative;
  z-index: 2;
  color: #f2e9d8;
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 2vw, 16px) clamp(16px, 4vw, 48px);
  background: #07060a;
  border-bottom: 1px solid rgba(205, 162, 86, 0.18);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 6px rgba(205, 162, 86, 0.7)) drop-shadow(0 0 14px rgba(205, 162, 86, 0.35));
}

.nav-avatar {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #e8c07d;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  flex-wrap: wrap;
}

.nav-link {
  color: #cbbfae;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.nav-cta {
  border: 1px solid #cda256;
  color: #e8c07d;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-family: 'Cinzel', serif;
}

/* ---- Nav mobile: Links brechen unter Logo/Titel um ---- */
@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 90px clamp(24px, 6vw, 100px) 60px;
  scroll-margin-top: 70px;
  background: transparent;
  overflow: hidden;
  gap: 44px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
    padding: 140px clamp(24px, 6vw, 100px) 90px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* ---- Hero Hintergrundbild (shared_image.jpg) ---- */
.hero-bg-image {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url('./assets/img/mobilebg.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.95;
}

@media (min-width: 900px) {
  .hero-bg-image {
    background-image: url('./assets/img/shared_image.jpg');
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(5, 4, 13, 0.3) 0%, rgba(5, 4, 13, 0.6) 60%, #05040d 100%);
  pointer-events: none;
}

/* hero-stars bleibt im DOM aber ist jetzt leer — globale Sterne übernehmen */
.hero-stars {
  display: none;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #f2e9d8;
  animation: twinkle ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(205, 162, 86, 0.10) 0%, rgba(205, 162, 86, 0) 70%);
}

.hero-avatar-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatSlow 7s ease-in-out infinite;
  flex-shrink: 0;
  margin-top: 14px;
}

.hero-avatar-ring {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-avatar {
  width: clamp(215px, 25.5vw, 332px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(205, 162, 86, 0.8)) drop-shadow(0 0 50px rgba(205, 162, 86, 0.45)) drop-shadow(0 0 100px rgba(205, 162, 86, 0.2)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.7));
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(32px, 5.1vw, 61px);
  letter-spacing: 0.03em;
  color: #f2e9d8;
  margin: 0;
  text-shadow: 0 0 40px rgba(205, 162, 86, 0.35);
}

.hero-handle {
  position: relative;
  z-index: 2;
  font-size: clamp(15px, 1.7vw, 19px);
  color: #cda256;
  letter-spacing: 0.08em;
  margin: 0;
  font-family: 'Cinzel', serif;
  font-weight: 400;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #a89a89;
  font-size: 14px;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-stats-sep {
  color: #8a7d6a;
}

.hero-desc {
  position: relative;
  z-index: 2;
  max-width: 600px;
  font-size: clamp(16px, 1.87vw, 20px);
  line-height: 1.6;
  color: #e3d8c4;
  font-style: italic;
  margin: 6px 0 0;
  text-wrap: pretty;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #e8c07d, #b8863e);
  color: #1a1206;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 31px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(205, 162, 86, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(205, 162, 86, 0.6);
  color: #e8c07d;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 31px;
  border-radius: 999px;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px 100px;
  opacity: 0.6;
}

.divider-line {
  width: 60px;
  height: 1px;
}

.divider-line--left {
  background: linear-gradient(90deg, transparent, #cda256);
}

.divider-line--right {
  background: linear-gradient(270deg, transparent, #cda256);
}

/* ============================================================
   SECTION INTRO / DESCRIPTION
   ============================================================ */
.section-intro {
  padding: 36px 24px;
  display: flex;
  justify-content: center;
  background: transparent;
}

@media (min-width: 900px) {
  .section-intro {
    padding: 110px 24px;
  }
}

.intro-inner {
  max-width: 760px;
  text-align: center;
}

.section-label {
  font-family: 'Cinzel', serif;
  color: #cda256;
  letter-spacing: 0.25em;
  font-size: 13px;
  margin-bottom: 22px;
}

.intro-text {
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.7;
  color: #f2e9d8;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.tag {
  border: 1px solid rgba(205, 162, 86, 0.35);
  color: #e3d8c4;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 16px;
}

/* ============================================================
   THEMES
   ============================================================ */
.section-themes {
  padding: 0 24px 60px;
  scroll-margin-top: 70px;
}

@media (min-width: 900px) {
  .section-themes {
    padding: 0 24px 130px;
  }
}

.section-themes .inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 4vw, 44px);
  color: #f2e9d8;
  margin: 0;
  font-weight: 500;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 24px;
}

.theme-card {
  background: linear-gradient(180deg, rgba(205, 162, 86, 0.06), rgba(205, 162, 86, 0.01));
  border: 1px solid rgba(205, 162, 86, 0.18);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
}

.theme-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid rgba(205, 162, 86, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-title {
  font-family: 'Cinzel', serif;
  font-size: 19px;
  color: #e8c07d;
  margin: 0 0 12px;
  letter-spacing: 0.03em;
}

.theme-text {
  font-size: 17px;
  line-height: 1.6;
  color: #b8ada0;
  margin: 0;
  text-wrap: pretty;
}

/* ============================================================
   VIDEOS
   ============================================================ */
.section-videos {
  padding: 0 24px 60px;
  scroll-margin-top: 70px;
}

@media (min-width: 900px) {
  .section-videos {
    padding: 0 24px 130px;
  }
}

.section-videos .inner {
  max-width: 1180px;
  margin: 0 auto;
}

.videos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}

.videos-link-all {
  color: #e8c07d;
  font-size: 16px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(205, 162, 86, 0.5);
  padding-bottom: 2px;
  white-space: nowrap;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 28px;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  text-decoration: none;
}

.video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #14100c;
  border: 1px solid rgba(205, 162, 86, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover .video-media {
  transform: translateY(-4px);
  border-color: rgba(205, 162, 86, 0.45);
  box-shadow: 0 12px 30px rgba(205, 162, 86, 0.15);
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0) 60%,
      rgba(7, 6, 10, 0.4) 100%);
  pointer-events: none;
}

.video-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
}

.video-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #f2e9d8;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 5px;
  font-family: 'Cormorant Garamond', serif;
}

.video-watermark {
  position: absolute;
  bottom: 8px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

.video-title-bar {
  padding: 0 4px;
}

.video-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #f2e9d8;
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
  text-wrap: pretty;
  transition: color 0.3s ease;
}

.video-card:hover .video-title {
  color: #e8c07d;
}

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  padding: 0 24px 60px;
  scroll-margin-top: 70px;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .section-about {
    padding: 0 24px 130px;
  }
}

.about-inner {
  max-width: 720px;
  text-align: center;
}

.about-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #f2e9d8;
  margin: 0 0 26px;
  font-weight: 500;
}

.about-text {
  font-size: 20px;
  line-height: 1.8;
  color: #cbbfae;
  margin: 0;
  text-wrap: pretty;
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-page {
  padding: 90px 24px 60px;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .legal-page {
    padding: 140px 24px 100px;
  }
}

.legal-inner {
  max-width: 720px;
  width: 100%;
}

.legal-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 48px);
  color: #f2e9d8;
  margin: 0 0 40px;
  font-weight: 500;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-heading {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: #e8c07d;
  margin: 0 0 12px;
  font-weight: 500;
}

.legal-text {
  font-size: 18px;
  line-height: 1.8;
  color: #cbbfae;
  margin: 0 0 8px;
}

.legal-text a {
  color: #e8c07d;
}

.legal-placeholder {
  color: #8a7d6a;
  font-style: italic;
}

.legal-back {
  display: inline-block;
  margin-bottom: 40px;
  color: #cda256;
  font-size: 16px;
}

/* ============================================================
   QUOTE
   ============================================================ */
.section-quote {
  position: relative;
  padding: 70px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  overflow: hidden;
}

@media (min-width: 900px) {
  .section-quote {
    padding: 150px 24px;
  }
}

/* Goldener Glow-Overlay nur für Quote */
.section-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(205,162,86,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.section-quote .quote-stars {
  display: none;
}

.quote-text {
  position: relative;
  z-index: 2;
  max-width: 640px;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.6;
  color: #f2e9d8;
  margin: 0;
  text-wrap: pretty;
}

/* ============================================================
   RECOMMENDATIONS (AFFILIATE)
   ============================================================ */
.section-recommendations {
  padding: 60px 24px;
  scroll-margin-top: 70px;
}

@media (min-width: 900px) {
  .section-recommendations {
    padding: 130px 24px;
  }
}

.section-recommendations .inner {
  max-width: 1180px;
  margin: 0 auto;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 32px;
  margin-top: 50px;
}

.recommendation-card {
  background: linear-gradient(180deg, rgba(205, 162, 86, 0.05) 0%, rgba(205, 162, 86, 0.01) 100%);
  border: 1px solid rgba(205, 162, 86, 0.15);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 380px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.recommendation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 162, 86, 0.4), transparent);
}

.recommendation-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 162, 86, 0.4);
  box-shadow: 0 16px 36px rgba(205, 162, 86, 0.06);
}

.recommendation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(205, 162, 86, 0.06);
  border: 1px solid rgba(205, 162, 86, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.recommendation-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(205, 162, 86, 0.12);
}

.recommendation-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #e8c07d;
  margin: 0 0 16px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.recommendation-text {
  font-size: 16px;
  line-height: 1.7;
  color: #b8ada0;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.btn-recommendation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f2e9d8;
  background: transparent;
  border: 1px solid rgba(205, 162, 86, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-recommendation:hover {
  background: #cda256;
  color: #07060a;
  border-color: #cda256;
  box-shadow: 0 0 15px rgba(205, 162, 86, 0.3);
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  padding: 60px 24px;
  scroll-margin-top: 70px;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .section-faq {
    padding: 130px 24px;
  }
}

.faq-inner {
  max-width: 760px;
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(205, 162, 86, 0.2);
  border-radius: 14px;
  background: rgba(205, 162, 86, 0.03);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
}

.faq-q-text {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: #f2e9d8;
  letter-spacing: 0.01em;
}

.faq-toggle {
  color: #cda256;
  font-size: 20px;
  flex-shrink: 0;
  user-select: none;
}

.faq-answer {
  display: none;
  margin: 0;
  padding: 0 26px 24px;
  font-size: 17px;
  line-height: 1.6;
  color: #b8ada0;
  text-wrap: pretty;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ============================================================
   NEWSLETTER / CONTACT
   ============================================================ */
.section-contact {
  padding: 0 24px 140px;
  display: flex;
  justify-content: center;
}

.contact-box {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, rgba(205, 162, 86, 0.08), rgba(205, 162, 86, 0.01));
  border: 1px solid rgba(205, 162, 86, 0.2);
  border-radius: 24px;
  padding: 56px 40px;
}

.contact-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.4vw, 34px);
  color: #f2e9d8;
  margin: 0 0 14px;
  font-weight: 500;
}

.contact-desc {
  font-size: 18px;
  color: #b8ada0;
  margin: 0 0 32px;
  line-height: 1.6;
}

.contact-success {
  font-family: 'Cinzel', serif;
  color: #e8c07d;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin: 0;
}

.contact-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-input {
  flex: 1;
  min-width: 220px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(205, 162, 86, 0.35);
  border-radius: 999px;
  padding: 14px 22px;
  color: #f2e9d8;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  outline: none;
}

.contact-input::placeholder {
  color: #7a6f62;
}

.contact-btn {
  background: linear-gradient(135deg, #e8c07d, #b8863e);
  color: #1a1206;
  border: none;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(205, 162, 86, 0.15);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 5px rgba(205, 162, 86, 0.6)) drop-shadow(0 0 12px rgba(205, 162, 86, 0.3));
}

.footer-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #e8c07d;
}

.footer-url {
  color: #cbbfae;
  font-size: 16px;
}

.footer-copy {
  color: #8a7d6a;
  font-size: 14px;
  margin: 0;
}

.footer-ai-notice {
  color: #8a7d6a;
  font-size: 13px;
  margin: 0;
  text-align: center;
  max-width: 480px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-legal-link {
  color: #8a7d6a;
}

.footer-legal-sep {
  color: #5a4f42;
}