@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;600&family=Inter:wght@300;400&display=swap');

:root {
  --color-bg: #0A0A0A;
  --color-surface: #141414;
  --color-gold: #C9A84C;
  --color-gold-light: #E8C97A;
  --color-text: #F5F0E8;
  --color-text-muted: rgba(245, 240, 232, 0.5);
  --color-border: rgba(201, 168, 76, 0.2);
  --gap: clamp(16px, 3vw, 32px);
  --section-padding: clamp(80px, 12vw, 160px);
  --container-max: 1280px;
  --container-padding: clamp(24px, 6vw, 100px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

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

/* =====================
   NAVIGATION
   ===================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: clamp(20px, 3vw, 32px) clamp(24px, 6vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
  z-index: 1100;
  position: relative;
  transition: color 0.3s ease;
}

.nav__logo.on-gold {
  color: #0A0A0A !important;
}

.nav__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
  position: relative;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-text);
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sidebar Navigation */
.nav__overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100vh;
  background: #0A0A0A;
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 56px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

.nav__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav__overlay-left {
  display: contents;
}

.nav__overlay-divider {
  display: none;
}

.nav__overlay-right {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 24px;
}

.nav__overlay-deco {
  display: none;
}

.nav__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav__links li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  overflow: hidden;
  padding: 14px 0;
}

.nav__links .nav__num {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  flex-shrink: 0;
  min-width: 32px;
}

.nav__links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
  transition: color 0.3s ease;
}

.nav__links a:hover {
  color: var(--color-gold);
}

.nav__links li:last-child a {
  font-size: 22px;
}

.nav__contact-info {
  position: absolute;
  bottom: 48px;
  left: 56px;
  right: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  text-align: left;
}

.nav__contact-info span,
.nav__contact-info a {
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}

.nav__contact-info span {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.nav__contact-info a {
  color: var(--color-gold);
  transition: opacity 0.3s ease;
}

.nav__contact-info a:hover {
  opacity: 0.7;
}

/* Sidebar decorative line */
.sidebar-line {
  position: absolute;
  left: 24px;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.6) 20%,
    rgba(201, 168, 76, 0.6) 80%,
    transparent
  );
}

/* Nav Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Sidebar Close Button */
.sidebar-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.2s ease;
}

.sidebar-close:hover {
  color: var(--color-gold);
}

@media (max-width: 780px) {
  .nav__overlay {
    width: 100%;
    max-width: 320px;
  }
}

/* =====================
   HERO
   ===================== */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.hero__left {
  display: flex;
  align-items: center;
  background: var(--color-bg);
  padding: 120px clamp(40px, 8vw, 120px) 120px clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 10;
}

.hero__right {
  background-image: url('https://images.unsplash.com/photo-1560066984-138daaa0a3fb?w=1600&q=80');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  will-change: transform;
}

.hero__content {
  max-width: 600px;
}

.hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  will-change: transform;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 1.0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero__title span {
  display: block;
  will-change: transform;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 40px;
  will-change: transform;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 44px;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
  will-change: transform;
}

.btn--primary {
  background: var(--color-gold);
  color: #0A0A0A;
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn--ghost:hover {
  background: rgba(201, 168, 76, 0.1);
}

.btn--dark {
  background: #0A0A0A;
  color: var(--color-text);
  border-color: #0A0A0A;
  min-height: 52px;
  padding: 14px 40px;
  font-size: 13px;
}

.btn--dark:hover {
  background: #1a1a1a;
}

.btn--gold-submit {
  background: var(--color-gold);
  color: #0A0A0A;
  border-color: var(--color-gold);
  width: 100%;
  min-height: 52px;
  font-size: 13px;
  font-weight: 400;
}

.btn--gold-submit:hover {
  background: var(--color-gold-light);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--color-gold);
  transform-origin: top;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); opacity: 1; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

.hero__scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
}

/* =====================
   SECTION HEADERS
   ===================== */

.section-label {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
}

.section-title--centered {
  text-align: center;
}

/* =====================
   ABOUT SECTION
   ===================== */

.about {
  padding: var(--section-padding) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.about__image {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.about__image img {
  width: 100%;
  height: clamp(400px, 60vh, 700px);
  object-fit: cover;
}

.about__content {
  will-change: transform;
}

.about__text {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-top: 24px;
}

.about__text p + p {
  margin-top: 16px;
}

@media (max-width: 780px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   SERVICES SECTION
   ===================== */

.services {
  background: var(--color-surface);
  padding: var(--section-padding) 0;
}

.services__header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}

.services__header .section-label {
  margin: 0 auto 24px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--color-bg);
  border-top: 2px solid var(--color-gold);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  will-change: transform;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.service-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   STATS SECTION
   ===================== */

.stats {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  text-align: center;
}

.stat-item__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: 0.03em;
}

.stat-item__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 12px;
}

@media (max-width: 780px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* =====================
   CTA SECTION
   ===================== */

.cta {
  background: linear-gradient(135deg, #C9A84C 0%, #8B6914 100%);
  padding: var(--section-padding) 0;
  text-align: center;
}

.cta .section-label {
  background: #0A0A0A;
  margin: 0 auto 24px;
}

.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.cta__text {
  font-size: 16px;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 40px;
}

/* =====================
   FOOTER
   ===================== */

.footer {
  background: #060606;
  padding: clamp(60px, 10vw, 100px) 0 40px;
  border-top: 1px solid var(--color-gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 60px;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__contact p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.footer__contact a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.footer__contact a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: var(--color-gold);
}

@media (max-width: 780px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================
   STICKY CTA
   ===================== */

.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  background: var(--color-gold);
  color: #0A0A0A;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}

.sticky-cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.sticky-cta.hidden {
  display: none;
}

@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__left {
    min-height: 100vh;
    padding: 120px clamp(24px, 6vw, 60px) 100px;
  }

  .hero__right {
    display: none;
  }
}

/* =====================
   PORTFOLIO PREVIEW
   ===================== */

.portfolio-preview {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}

.portfolio-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 12px;
}

.preview-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.preview-item--tall {
  grid-row: span 2;
}

.preview-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.preview-item:hover .preview-img {
  transform: scale(1.05);
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.3s ease;
}

.preview-item:hover .preview-overlay {
  background: rgba(10, 10, 10, 0.5);
}

.preview-overlay span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.preview-item:hover .preview-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-preview-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-ghost-gold {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 16px 48px;
  min-height: 44px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-ghost-gold:hover {
  background: var(--color-gold);
  color: #0A0A0A;
}

@media (max-width: 780px) {
  .portfolio-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .preview-item--tall {
    grid-row: span 1;
  }
}

/* =====================
   SUBPAGE HERO
   ===================== */

.subpage-hero {
  height: 40vh;
  min-height: 320px;
  background: var(--color-surface);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3), rgba(10,10,10,0.8));
  z-index: 1;
}

.subpage-hero__bg {
  position: absolute;
  inset: 0;
}

.subpage-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
}

.subpage-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
}

/* =====================
   PORTFOLIO
   ===================== */

.portfolio-section {
  padding: var(--section-padding) 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}

.portfolio-grid__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
}

.portfolio-grid__item:nth-child(2) { grid-row: span 2; }
.portfolio-grid__item:nth-child(5) { grid-row: span 2; }
.portfolio-grid__item:nth-child(8) { grid-row: span 2; }

.portfolio-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-grid__item:hover img {
  transform: scale(1.05);
}

.portfolio-grid__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;
}

.portfolio-grid__item:hover .portfolio-grid__overlay {
  opacity: 1;
}

.portfolio-grid__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A0A0A;
}

@media (max-width: 780px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .portfolio-grid__item:nth-child(2),
  .portfolio-grid__item:nth-child(5),
  .portfolio-grid__item:nth-child(8) {
    grid-row: span 1;
  }
}

/* =====================
   CONTACT
   ===================== */

.contact-section {
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(60px, 10vw, 120px);
  align-items: start;
}

.contact-info__item {
  margin-bottom: 40px;
}

.contact-info__heading {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-info__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.contact-info__text a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.contact-info__text a:hover {
  color: var(--color-gold);
}

.opening-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  font-size: 14px;
}

.opening-hours .day {
  color: var(--color-text-muted);
}

.opening-hours .time {
  color: var(--color-text);
}

.contact-form {
  will-change: transform;
}

.form-group {
  margin-bottom: 20px;
  will-change: transform;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--color-surface);
  color: var(--color-text);
}

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

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
  margin-top: 2px;
}

.form-group--checkbox label {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
  margin-bottom: 0;
}

.form-group--checkbox label a {
  color: var(--color-gold);
  text-decoration: underline;
}

@media (max-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   DATENSCHUTZ
   ===================== */

.legal-section {
  padding: var(--section-padding) 0;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 48px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.9;
  padding-left: 16px;
  position: relative;
}

.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}
