/* ===================================================================
   Deniz Letselschade — stylesheet
   Design tokens: Onyx / Ivory / Champagne Gold
   =================================================================== */

:root {
  --onyx: #0c0c0d;
  --charcoal: #1c1c1f;
  --graphite: #2a2a2e;
  --ivory: #faf8f5;
  --stone: #6e6c68;
  --gold: #b99a5b;
  --gold-light: #e4d3aa;
  --gold-dark: #8c7135;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--onyx);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

::selection {
  background: rgba(185, 154, 91, 0.3);
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.hairline {
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease-out;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--onyx);
}
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 30px -8px rgba(185, 154, 91, 0.45);
  transform: translateY(-1px);
}
.btn-secondary {
  border-color: rgba(12, 12, 13, 0.15);
  color: var(--onyx);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-ghost {
  border-color: rgba(250, 248, 245, 0.25);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(12, 12, 13, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 20px 60px -20px rgba(12, 12, 13, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
}
.logo-text .sub {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(250, 248, 245, 0.6);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250, 248, 245, 0.85);
  transition: color 0.2s;
}
.main-nav a:hover {
  color: var(--gold-light);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 20px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
}
.header-phone:hover {
  color: var(--gold-light);
}

@media (min-width: 1024px) {
  .main-nav,
  .header-actions {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  padding: 4px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--onyx);
  display: none;
  flex-direction: column;
  padding: 24px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 32px 24px 0;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ivory);
  padding: 12px 0;
  border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}
.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(250, 248, 245, 0.25);
  color: var(--ivory);
  transition: all 0.3s ease;
}
.header-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.mobile-actions {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.mobile-actions .header-phone {
  color: var(--ivory);
}
.mobile-actions .btn {
  width: 100%;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--onyx);
  color: var(--ivory);
  padding: 160px 0 112px;
}
@media (min-width: 768px) {
  .hero {
    padding: 208px 0 144px;
  }
}
.hero-glow-1 {
  position: absolute;
  top: -160px;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(185, 154, 91, 0.1);
  filter: blur(140px);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(185, 154, 91, 0.05);
  filter: blur(120px);
  pointer-events: none;
}
.hero-stork {
  position: absolute;
  top: 100px;
  right: 24px;
  width: 170px;
  height: 81px;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  pointer-events: none;
}
.hero-stork.draw {
  opacity: 0.3;
  transform: scale(1);
}
@media (min-width: 768px) {
  .hero-stork {
    top: 100px;
    right: 80px;
    width: 240px;
    height: 114px;
  }
}
.hero-content {
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  max-width: 780px;
  margin: 24px 0 0;
}
.hero p.lead {
  max-width: 540px;
  margin: 28px 0 0;
  font-size: 1.125rem;
  color: rgba(250, 248, 245, 0.7);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero-trust {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.5);
}

/* ===================== Benefits ===================== */
.benefits {
  padding: 96px 0;
  background: var(--ivory);
}
@media (min-width: 768px) {
  .benefits {
    padding: 128px 0;
  }
}
.section-intro {
  max-width: 640px;
}
.section-intro h2 {
  margin-top: 16px;
}
.benefits-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.benefit-card {
  border: 1px solid rgba(12, 12, 13, 0.08);
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  border-color: rgba(185, 154, 91, 0.4);
  box-shadow: 0 20px 60px -20px rgba(12, 12, 13, 0.25);
}
.benefit-card svg {
  color: var(--gold);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 24px 0 0;
}
.benefit-card p {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ===================== Process ===================== */
.process {
  padding: 96px 0;
  background: var(--onyx);
  color: var(--ivory);
}
@media (min-width: 768px) {
  .process {
    padding: 128px 0;
  }
}
.process .section-intro h2 {
  color: var(--ivory);
}
.process-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(250, 248, 245, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.process-step {
  background: var(--onyx);
  padding: 32px 28px;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 20px 0 0;
}
.process-step p {
  margin: 12px 0 0;
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.6;
}

/* ===================== Why Deniz ===================== */
.why-deniz {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--ivory);
}
@media (min-width: 768px) {
  .why-deniz {
    padding: 128px 0;
  }
}
.why-watermark {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 420px;
  height: 200px;
  opacity: 0.035;
  pointer-events: none;
}
.why-single {
  position: relative;
  max-width: 720px;
}
.why-text p {
  color: var(--stone);
  line-height: 1.7;
  margin: 16px 0 0;
}
.why-text .btn {
  margin-top: 32px;
}

/* ===================== Reviews ===================== */
.reviews {
  padding: 96px 0;
  background: var(--ivory);
}
@media (min-width: 768px) {
  .reviews {
    padding: 128px 0;
  }
}
.reviews .section-intro p {
  margin-top: 16px;
  color: var(--stone);
  font-size: 0.9rem;
}
.reviews-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review-card {
  border: 1px solid rgba(12, 12, 13, 0.08);
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.review-card:hover {
  border-color: rgba(185, 154, 91, 0.4);
  box-shadow: 0 20px 60px -20px rgba(12, 12, 13, 0.25);
}
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}
.review-card p.quote {
  margin: 16px 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--stone);
}
.review-card p.name {
  margin: 16px 0 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(110, 108, 104, 0.6);
}

/* ===================== FAQ ===================== */
.faq {
  padding: 96px 0;
  background: var(--ivory);
}
@media (min-width: 768px) {
  .faq {
    padding: 128px 0;
  }
}
.faq-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .faq-header {
    flex-direction: row;
    align-items: flex-end;
  }
}
.faq-list {
  margin-top: 56px;
}
.faq-item {
  border-bottom: 1px solid rgba(12, 12, 13, 0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--onyx);
}
@media (min-width: 768px) {
  .faq-question {
    font-size: 1.4rem;
  }
}
.faq-question .icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  margin: 0 0 24px;
  max-width: 640px;
  color: var(--stone);
  line-height: 1.6;
}

/* ===================== Contact ===================== */
.contact {
  padding: 96px 0;
  background: var(--onyx);
  color: var(--ivory);
}
@media (min-width: 768px) {
  .contact {
    padding: 128px 0;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}
.contact-info p.lead {
  margin: 20px 0 0;
  max-width: 380px;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.6;
}
.contact-info-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-list a,
.contact-info-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 248, 245, 0.85);
}
.contact-info-list svg {
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-list a:hover {
  color: var(--gold-light);
}

.contact-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.5);
  max-width: 380px;
  line-height: 1.6;
}
.map-embed {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 245, 0.15);
  filter: grayscale(0.3) contrast(1.05);
}
.map-embed iframe {
  display: block;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(250, 248, 245, 0.15);
  padding: 14px 16px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(250, 248, 245, 0.3);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.form-field {
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-error {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #f87171;
}
.form-success {
  border: 1px solid rgba(185, 154, 91, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 16px 0 0;
}
.form-success p {
  margin: 12px 0 0;
  color: rgba(250, 248, 245, 0.6);
}
.form-success svg {
  color: var(--gold);
}

/* ===================== Subpage header ===================== */
.page-header {
  background: var(--onyx);
  color: var(--ivory);
  padding: 150px 0 64px;
}
@media (min-width: 768px) {
  .page-header {
    padding: 180px 0 80px;
  }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(250, 248, 245, 0.7);
}
.breadcrumb a:hover {
  color: var(--gold-light);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  max-width: 760px;
  margin: 16px 0 0;
}
.page-header p.lead {
  margin: 20px 0 0;
  max-width: 620px;
  color: rgba(250, 248, 245, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===================== Long-form content page ===================== */
.content-page {
  padding: 72px 0 100px;
  background: var(--ivory);
}
.content-page .prose {
  max-width: 760px;
}
.content-page .prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 56px 0 18px;
}
.content-page .prose h2:first-child {
  margin-top: 0;
}
.content-page .prose h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 32px 0 12px;
}
.content-page .prose p {
  color: var(--stone);
  line-height: 1.75;
  margin: 0 0 18px;
}
.content-page .prose ul,
.content-page .prose ol {
  color: var(--stone);
  line-height: 1.75;
  margin: 0 0 18px;
  padding-left: 22px;
}
.content-page .prose li {
  margin-bottom: 8px;
}
.content-page .prose a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.content-page .toc {
  background: #fff;
  border: 1px solid rgba(12, 12, 13, 0.08);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
  max-width: 760px;
}
.content-page .toc h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-weight: 700;
}
.content-page .toc ul {
  margin: 0;
  padding-left: 20px;
  columns: 1;
}
@media (min-width: 640px) {
  .content-page .toc ul {
    columns: 2;
    column-gap: 32px;
  }
}
.content-page .toc li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  break-inside: avoid;
}
.content-page .toc a {
  color: var(--onyx);
}
.content-page .toc a:hover {
  color: var(--gold-dark);
}

.side-cta {
  max-width: 760px;
  background: var(--onyx);
  color: var(--ivory);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .side-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.side-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 6px;
}
.side-cta p {
  margin: 0;
  color: rgba(250, 248, 245, 0.6);
  font-size: 0.9rem;
}
.side-cta .btn {
  flex-shrink: 0;
}
.site-footer {
  background: var(--onyx);
  color: var(--ivory);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer-about p {
  margin-top: 20px;
  max-width: 380px;
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.6;
}
.footer-about .firm-note {
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.4);
}
.footer-col h3 {
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a,
.footer-col ul li {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.7);
}
.footer-col ul a:hover {
  color: var(--gold-light);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.7);
}
.footer-contact-item svg {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.4);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-bottom a {
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
