/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
.hidden { display: none !important; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --coral:       #e85d4a;
  --coral-light: rgba(232, 93, 74, 0.06);
  --cream:       #f5f0e8;
  --charcoal:    #2d2d2d;
  --dark:        #1a1a1a;
  --cream-60:    rgba(245, 240, 232, 0.60);
  --cream-40:    rgba(245, 240, 232, 0.40);
  --cream-10:    rgba(245, 240, 232, 0.10);
  --charcoal-60: rgba(45, 45, 45, 0.60);
  --charcoal-10: rgba(45, 45, 45, 0.10);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --pad-x: 48px;
  --pad-y: 88px;
}

/* ── BASE TYPOGRAPHY ── */
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.05; letter-spacing: -0.5px; }

/* ── UTILITY ── */
.eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--coral); flex-shrink: 0; }

.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: 14px 32px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover { background: #d44e3c; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.9; }
.btn-ghost::after { content: '↓'; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--charcoal-10);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(45, 45, 45, 0.08); }
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.55;
}
.nav-links a { transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--coral); }
.nav-cta { padding: 10px 22px; font-size: 10px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: calc(64px + 80px) var(--pad-x) 80px;
  background-image: url('../images/texture-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245, 240, 232, 0.65);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-headline {
  font-size: clamp(44px, 5.5vw, 68px);
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--coral); }
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.65;
  max-width: 460px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }


/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 200px;
  gap: 3px;
  background: var(--charcoal);
}
.photo { overflow: hidden; position: relative; }
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) sepia(0.08);
  transition: transform 0.6s ease, filter 0.3s;
}
.photo:hover img {
  transform: scale(1.04);
  filter: saturate(0.85) sepia(0.04);
}
.photo-large { grid-row: 1 / 3; }

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--charcoal);
}
.about-image { overflow: hidden; }
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65) sepia(0.1);
}
.about-logo {
  width: 180px;
  height: auto;
  margin-top: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.about-content {
  padding: var(--pad-y) 64px var(--pad-y) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-eyebrow { color: var(--coral); }
.about-eyebrow::before { background: var(--coral); }
.about-headline {
  font-size: clamp(32px, 3.5vw, 42px);
  color: var(--cream);
  margin-bottom: 28px;
}
.about-headline em { font-style: italic; color: var(--coral); }
.about-body {
  color: var(--cream-60);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.about-body p + p { margin-top: 16px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--cream-10);
  padding-top: 32px;
}
.about-value-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.about-value-text {
  font-size: 13px;
  color: var(--cream-40);
  line-height: 1.6;
}

/* ── SERVICES ── */
.services {
  background-image: url('../images/texture-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: var(--pad-y) var(--pad-x);
}
.services::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245, 240, 232, 0.72);
  pointer-events: none;
}
.services-header {
  position: relative; z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--charcoal-10);
}
.services-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--charcoal);
}
.services-headline em { font-style: italic; color: var(--coral); }
.services-intro {
  font-size: 13px;
  color: var(--charcoal-60);
  max-width: 240px;
  text-align: right;
  line-height: 1.7;
}
.services-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--charcoal-10);
}
.service-card {
  padding: 36px 28px;
  border-right: 1px solid var(--charcoal-10);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--coral-light); }
.service-num {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  opacity: 0.7;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}
.service-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--charcoal-60);
  flex: 1;
  margin-bottom: 24px;
}
.service-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  border-top: 1px solid var(--charcoal-10);
  padding-top: 16px;
  margin-top: auto;
  margin-bottom: 12px;
}
.service-price strong {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--coral);
}
.price-note { font-size: 10px; color: var(--charcoal-60); font-weight: 300; }
.service-cta {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-cta::after { content: '→'; font-size: 11px; }
.service-cta:hover { gap: 10px; }
.services-cta-banner {
  position: relative; z-index: 1;
  margin-top: 40px;
  background: var(--charcoal);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.services-cta-text {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.services-cta-sub { font-size: 12px; color: var(--cream-40); }

/* ── PORTFOLIO ── */
.portfolio { background: var(--cream); padding: var(--pad-y) var(--pad-x); }
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--charcoal-10);
}
.portfolio-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--charcoal);
}
.portfolio-headline em { font-style: italic; color: var(--coral); }
.portfolio-intro {
  font-size: 13px;
  color: var(--charcoal-60);
  max-width: 240px;
  text-align: right;
  line-height: 1.7;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) sepia(0.1);
  transition: transform 0.5s ease, filter 0.3s;
}
.portfolio-card:hover img { transform: scale(1.06); filter: saturate(0.85); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,45,45,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.portfolio-tag {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.portfolio-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.portfolio-result {
  font-size: 12px;
  color: var(--cream-60);
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--charcoal); padding: var(--pad-y) var(--pad-x); }
.testimonials-header { margin-bottom: 52px; }
.testimonials-eyebrow { color: var(--coral); }
.testimonials-eyebrow::before { background: var(--coral); }
.testimonials-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--cream);
  max-width: 560px;
  margin-top: 4px;
}
.testimonials-headline em { font-style: italic; color: var(--coral); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--cream-10);
  border: 1px solid rgba(245, 240, 232, 0.06);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s;
}
.testimonial-card:hover { background: rgba(245, 240, 232, 0.08); }
.testimonial-stars { color: var(--coral); font-size: 14px; letter-spacing: 2px; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial-name { font-size: 12px; font-weight: 600; color: var(--cream); }
.testimonial-role { font-size: 11px; color: var(--cream-40); font-weight: 300; }

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.contact-info {
  background: var(--charcoal);
  padding: var(--pad-y) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-eyebrow { color: var(--coral); }
.contact-eyebrow::before { background: var(--coral); }
.contact-headline {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--cream);
  margin-bottom: 20px;
}
.contact-headline em { font-style: italic; color: var(--coral); }
.contact-sub {
  font-size: 14px;
  color: var(--cream-60);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 44px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; font-style: normal; }
.contact-detail-label {
  display: block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 14px;
  color: var(--cream);
  line-height: 1.5;
  transition: color 0.2s;
}
a.contact-detail-value:hover { color: var(--coral); }

.contact-form-wrap {
  background-image: url('../images/texture-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: var(--pad-y) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245, 240, 232, 0.78);
  pointer-events: none;
}
.contact-form-wrap > * {
  position: relative; z-index: 1;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.2px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin-bottom: 8px;
}
.form-input {
  border: 1px solid var(--charcoal-10);
  background: transparent;
  padding: 13px 16px;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus { border-color: var(--coral); }
.form-input::placeholder { color: rgba(45, 45, 45, 0.3); }
.form-input.error { border-color: var(--coral); }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-select {
  appearance: none;
  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='%23e85d4a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-privacy {
  font-size: 11px;
  color: var(--charcoal-60);
  line-height: 1.6;
  margin-bottom: 20px;
}
.form-privacy a { color: var(--coral); text-decoration: underline; }
.form-error {
  font-size: 12px;
  color: var(--coral);
  margin-bottom: 12px;
  min-height: 18px;
}
.form-submit { width: 100%; }
.form-success {
  padding: 40px 32px;
  text-align: center;
}
.form-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.form-success-text {
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.6;
  line-height: 1.7;
}
.form-success-text a { color: var(--coral); }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 52px var(--pad-x) 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--cream-10);
  margin-bottom: 28px;
}
.footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}
.footer-about {
  font-size: 12px;
  color: var(--cream-40);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a, .footer-col-links li {
  font-size: 12px;
  color: var(--cream-40);
  font-weight: 300;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--coral); }
.footer-bottom {
  text-align: center;
}
.footer-legal {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.22);
  line-height: 1.9;
}
.footer-legal a { color: rgba(245, 240, 232, 0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--coral); }

/* ── LEGAL PAGES ── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 120px 48px 80px; }
.legal-page h1 { font-size: 40px; margin-bottom: 8px; }
.legal-page .updated { font-size: 11px; color: var(--charcoal-60); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 48px; }
.legal-page h2 { font-size: 20px; margin: 36px 0 12px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.8; color: var(--charcoal-60); margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; }
.legal-page a { color: var(--coral); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 40px; }
.back-link::before { content: '←'; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 13px; }
.legal-page th { text-align: left; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); padding: 8px 12px; border-bottom: 1px solid var(--charcoal-10); }
.legal-page td { padding: 10px 12px; border-bottom: 1px solid var(--charcoal-10); color: var(--charcoal-60); vertical-align: top; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 200;
  background: var(--charcoal);
  color: var(--cream);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.cookie-banner p { font-size: 13px; color: var(--cream-60); line-height: 1.5; }
.cookie-banner a { color: var(--coral); text-decoration: underline; }
.cookie-banner .btn-primary { white-space: nowrap; flex-shrink: 0; padding: 10px 20px; }

/* ── ANIMATIONS ── */

/* Hero entrance stagger */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.hero-content .eyebrow      { animation-delay: 0.15s; }
.hero-content .hero-headline { animation-delay: 0.3s; }
.hero-content .hero-sub     { animation-delay: 0.45s; }
.hero-content .hero-actions { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible,
.reveal-left.visible {
  opacity: 1;
  transform: none;
}

/* Stagger — service cards */
.service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.32s; }

/* Stagger — portfolio cards */
.portfolio-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.portfolio-card.reveal:nth-child(3) { transition-delay: 0.24s; }

/* Stagger — testimonials */
.testimonial-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.testimonial-card.reveal:nth-child(3) { transition-delay: 0.24s; }

/* Stagger — photo grid */
.photo.reveal:nth-child(2) { transition-delay: 0.07s; }
.photo.reveal:nth-child(3) { transition-delay: 0.14s; }
.photo.reveal:nth-child(4) { transition-delay: 0.21s; }
.photo.reveal:nth-child(5) { transition-delay: 0.28s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .hero-content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
