/* ===========================================================
   Julia Koppel — wróżka i jasnowidz
   Palette: deep black + warm gold + burgundy
   =========================================================== */

:root {
  /* Colors */
  --bg: #0a0807;
  --bg-alt: #14100d;
  --surface: #1d1714;
  --surface-2: #261d18;
  --gold: #c9a961;
  --gold-bright: #e8c97a;
  --gold-dim: #8a7440;
  --burgundy: #6b1a2e;
  --burgundy-light: #8d2d44;
  --text: #f4ead5;
  --text-muted: #a89880;
  --text-dim: #6f6253;
  --border: rgba(201, 169, 97, 0.18);
  --border-strong: rgba(201, 169, 97, 0.35);

  /* Type */
  --display: "Italiana", "Cormorant Garamond", Georgia, serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --max-w: 1240px;
  --pad: clamp(1.5rem, 5vw, 2.5rem);
  --section-y: clamp(4rem, 10vh, 7rem);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video, picture { display: block; max-width: 100%; height: auto; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--gold-bright); }

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.005em;
}

::selection { background: var(--gold); color: var(--bg); }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== Layout helpers ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "✦";
  display: inline-block;
  margin: 0 0.75rem;
  font-size: 0.6rem;
  opacity: 0.7;
  vertical-align: middle;
}

.section-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-family: var(--display);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section-lead {
  font-family: var(--serif);
  font-size: clamp(1.075rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.78rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(201, 169, 97, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201, 169, 97, 0.05);
}

/* ===== Decorative starfield ===== */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(1px 1px at 25% 15%, rgba(244, 234, 213, 0.5), transparent),
    radial-gradient(1px 1px at 80% 30%, rgba(201, 169, 97, 0.4), transparent),
    radial-gradient(2px 2px at 45% 60%, rgba(244, 234, 213, 0.3), transparent),
    radial-gradient(1px 1px at 65% 85%, rgba(201, 169, 97, 0.5), transparent),
    radial-gradient(1px 1px at 15% 75%, rgba(244, 234, 213, 0.4), transparent),
    radial-gradient(1px 1px at 90% 55%, rgba(201, 169, 97, 0.3), transparent);
  background-size: 1200px 1200px;
  opacity: 0.6;
  animation: drift 240s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 1200px 1200px; }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: var(--display);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.logo-mark em {
  font-style: normal;
  margin: 0 1px;
  opacity: 0.6;
}
.logo-text {
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.nav-desktop ul {
  display: flex;
  gap: 2.25rem;
}
.nav-desktop a {
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover { color: var(--gold-bright); }
.nav-desktop a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 102;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text);
  width: 44px;
  height: 44px;
  line-height: 1;
}
.mobile-menu nav { width: 100%; max-width: 320px; text-align: center; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--text);
}
.mobile-menu .mobile-cta { display: inline-block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.55) contrast(1.05) saturate(0.85);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, transparent 0%, var(--bg) 80%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.3) 0%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.eyebrow span { display: inline-block; margin-right: 0.6rem; }

.display {
  font-family: var(--display);
  font-size: clamp(3.5rem, 11vw, 8rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.display-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease) forwards;
}
.display-line:nth-child(1) { animation-delay: 0.3s; }
.display-line:nth-child(2) {
  animation-delay: 0.55s;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-left: clamp(2rem, 8vw, 6rem);
  margin-top: -0.2em;
}

.hero-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.75s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.95s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.15s forwards;
}
.meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.meta-item strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
}
.meta-item span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.5s forwards;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
  position: relative;
}
.hero-scroll span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg) translateY(-2px);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 3 / 4;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: brightness(0.85) contrast(1.05);
}
.about-media-frame {
  position: absolute;
  inset: -1rem -1rem 1rem 1rem;
  border: 1px solid var(--gold);
  z-index: 0;
}
.about-media::after {
  content: "✦";
  position: absolute;
  top: -2.5rem;
  right: 0.5rem;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.7;
}

.about-text { padding: 1rem 0; }
.about-text .section-eyebrow { text-align: left; }
.about-text .section-eyebrow::before { display: none; }

.about-text .section-title { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 2rem; }

.prose p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-pillars {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
.about-pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.about-pillars li:last-child { border-bottom: none; }
.pillar-num {
  grid-row: span 2;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  align-self: start;
}
.about-pillars strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text);
}
.about-pillars span:not(.pillar-num) {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.service-card:hover::before { opacity: 1; }

.service-card-feature {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-color: var(--border-strong);
}

.service-card-media {
  margin: -2.5rem -2rem 1.75rem;
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--bg);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(1.05);
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.service-card:hover .service-card-media img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}
.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,7,0) 55%, rgba(10,8,7,0.45) 100%),
    linear-gradient(0deg, rgba(201,169,97,0) 90%, rgba(201,169,97,0.08) 100%);
  pointer-events: none;
}

.section-divider {
  position: relative;
  width: 100%;
  height: clamp(140px, 22vh, 280px);
  overflow: hidden;
  margin: 0;
}
.section-divider-tight {
  height: clamp(120px, 18vh, 220px);
}
.section-divider picture,
.section-divider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.section-divider img {
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.95);
}
.section-divider-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,7,0.85) 0%, rgba(10,8,7,0.2) 35%, rgba(10,8,7,0.2) 65%, rgba(10,8,7,0.85) 100%),
    radial-gradient(ellipse at center, rgba(201,169,97,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.service-num {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.75rem;
}
.service-num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.service-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-card > p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-list {
  margin-bottom: 1.75rem;
  display: grid;
  gap: 0.5rem;
}
.service-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: var(--text);
}
.service-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
}
.service-link:hover { color: var(--gold-bright); }

.services-disclaimer {
  border: 1px solid var(--border);
  background: rgba(201, 169, 97, 0.03);
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  border-radius: 2px;
}
.services-disclaimer strong { color: var(--gold); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.testimonial:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.testimonial-rating {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.5rem;
  quotes: none;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.testimonial-author { color: var(--text); font-weight: 500; letter-spacing: 0.05em; }
.testimonial-date { color: var(--text-dim); font-size: 0.8rem; }

/* ===== FAQ ===== */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0;
  position: relative;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--gold); }
.faq-item:hover summary { color: var(--gold-bright); }

.faq-answer {
  padding: 0 3rem 1.75rem 0;
  animation: faqOpen 0.4s var(--ease);
}
.faq-answer p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-text .section-eyebrow { text-align: left; }
.contact-text .section-eyebrow::before { display: none; }
.contact-text .section-title { text-align: left; }
.contact-text .section-lead { margin: 0 0 2.5rem 0; text-align: left; }

.contact-channels {
  display: grid;
  gap: 0.75rem;
}
.contact-channels a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.contact-channels a:hover {
  border-color: var(--gold);
  background: var(--surface-2);
  transform: translateX(4px);
}
.channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.channel-icon svg { width: 20px; height: 20px; }
.contact-channels strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  display: block;
  color: var(--text);
}
.channel-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-2);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-checkbox input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand .logo-mark { margin-bottom: 0.5rem; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.5;
}
.footer-disclaimer strong { color: var(--text-muted); font-weight: 500; }
.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8);
  animation: cookieSlide 0.5s var(--ease);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
}
.cookie-text p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    max-width: 420px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cookie-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

@media (max-width: 600px) {
  :root { --section-y: 4rem; }
  .hero { padding-top: 5rem; }
  .display-line:nth-child(2) { margin-left: 0; }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .meta-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .testimonial { padding: 1.75rem 1.5rem; }
  .service-card { padding: 2rem 1.5rem 1.75rem; }
  .service-card-media { margin: -2rem -1.5rem 1.5rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .stars { animation: none; }
}
