/* ===== VARIABLES ===== */
:root {
  --bg-primary: #0a0a0a;
  --bg-section: #111111;
  --bg-card: #1e1e1e;
  --accent: #c8a96e;
  --text-primary: #ffffff;
  --text-muted: #9a9a9a;
  --border: #2a2a2a;
  --max-width: 1200px;
  --nav-height: 180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
  color: var(--text-muted);
  line-height: 1.75;
}

.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-section);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
}

.btn--primary:hover {
  opacity: 0.85;
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: #0a0a0a;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav__logo img {
  height: 156px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav__cta {
  padding: 10px 22px;
  font-size: 0.65rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: opacity 0.2s;
}

/* MOBILE NAV OVERLAY */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-overlay__link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.2s;
}

.nav-overlay__link:hover {
  color: var(--accent);
}

.nav-overlay__cta {
  margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.95) 40%,
    rgba(10,10,10,0.55) 70%,
    rgba(10,10,10,0.2) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 720px;
}

.hero__content {
  max-width: 680px;
}

.hero__content h1 {
  margin-bottom: 20px;
}

.hero__subtext {
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 36px;
  color: var(--text-muted);
}

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

.hero__portrait {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero__portrait img {
  max-height: 600px;
  width: auto;
  object-fit: cover;
  filter: grayscale(20%);
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.about__content h2 {
  margin-bottom: 24px;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.about__stats-dot {
  color: var(--border);
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(15%);
}

/* ===== SERVICES ===== */
.services__header {
  margin-bottom: 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card__image {
  height: 420px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: grayscale(20%);
  transition: transform 0.5s;
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__body h3 {
  margin-bottom: 16px;
}

.service-card__body > p {
  margin-bottom: 20px;
}

.service-card__list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.service-card__price {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.service-card__price strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.services__note {
  margin-top: 40px;
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.7;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PROCESS ===== */
.process {
  position: relative;
  overflow: hidden;
}

.process__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.process__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  z-index: 1;
}

.process h2 {
  margin-bottom: 60px;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.process__step {
  padding: 0 8px;
}

.process__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.process__step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.process__connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin-top: 32px;
  align-self: start;
}

/* ===== TEAM ===== */
.team__intro {
  max-width: 480px;
  margin-bottom: 52px;
  margin-top: 16px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.team__card:hover {
  border-color: var(--accent);
}

.team__card-accent {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.team__card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.team__card-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== CONTACT ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__form-col h2 {
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.required { color: var(--accent); }
.optional { color: #555; font-style: italic; text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-error {
  color: #e05a5a;
  font-size: 0.8rem;
}

.form-error.hidden { display: none; }

.form-note {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: -8px;
}

.form-success {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 4px;
  text-align: center;
}

.form-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn--sending {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact__direct {
  margin-bottom: 40px;
}

.contact__direct h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__link {
  font-size: 1rem;
  color: var(--accent);
  transition: opacity 0.2s;
  display: inline-block;
}

.contact__link:hover {
  opacity: 0.75;
}

.contact__address p {
  font-size: 0.85rem;
  margin-top: 4px;
}

.contact__img img {
  width: 100%;
  border-radius: 2px;
  filter: grayscale(15%);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.93);
  z-index: 1;
}

.footer__inner {
  position: relative;
  z-index: 2;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: var(--accent);
}

.footer__divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.footer__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.footer__address strong {
  color: var(--text-primary);
}

.footer__address a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__address a:hover {
  color: var(--accent);
}

.footer__legal {
  display: flex;
  gap: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__legal a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--accent);
}

.footer__copy {
  font-size: 0.75rem;
  color: #444;
  text-align: center;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.85rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 0.65rem;
}

/* ===== RESPONSIVE ===== */

/* ── TABLET: 768px – 1199px ── */
@media (max-width: 1199px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero__portrait {
    display: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image img {
    height: 340px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process__connector {
    display: none;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ── MOBILE: < 768px ── */
@media (max-width: 767px) {
  :root {
    --nav-height: 120px;
  }

  .section {
    padding: 64px 0;
  }

  /* Nav */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .hero__overlay {
    background: rgba(10, 10, 10, 0.82);
  }

  .hero__content h1 {
    font-size: 2.4rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__image {
    order: -1;
  }

  .about__image img {
    height: 260px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process__connector {
    display: none;
  }

  .process__num {
    font-size: 3rem;
  }

  /* Team */
  .team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__meta {
    flex-direction: column;
  }

  .footer__legal {
    flex-direction: column;
    gap: 12px;
  }

  /* Cookie Banner */
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

/* ── VERY SMALL MOBILE: < 400px ── */
@media (max-width: 399px) {
  .team__grid {
    grid-template-columns: 1fr;
  }
}
