:root {
  --clay: #b45f3c;
  --clay-dark: #8e4528;
  --charcoal: #1f1f1f;
  --slate: #3a3a3a;
  --mist: #f4f1ec;
  --sand: #e8e2d9;
  --white: #ffffff;
  --gold: #c9a96e;
  --shadow: 0 12px 40px rgba(0,0,0,.08);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--mist);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--clay);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .9rem;
  font-weight: 800;
}

.nav-links { display: flex; gap: 6px; align-items: center; }

.nav-links a {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate);
  transition: background .2s, color .2s;
}

.nav-links a:hover,
.nav-links a.active { background: var(--sand); color: var(--charcoal); }

.nav-cta {
  background: var(--clay);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 12px;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--clay-dark) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 28px 80px;
  background:
    linear-gradient(105deg, rgba(31,31,31,.82) 0%, rgba(31,31,31,.45) 55%, rgba(31,31,31,.15) 100%),
    url('../img/bg.jpg') center/cover no-repeat;
}

.hero-content { max-width: 1280px; margin: 0 auto; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,.18);
  border: 1px solid rgba(201,169,110,.4);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  max-width: 760px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin-top: 22px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
}

.btn-primary { background: var(--clay); color: #fff; }

.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(180,95,60,.3);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}

.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.trust-bar {
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate);
}

.trust-item i { color: var(--clay); font-size: 1.2rem; }

.section { padding: 100px 28px; }
.section-alt { background: var(--white); }
.section-dark { background: var(--charcoal); }

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  max-width: 680px;
}

.section-sub {
  color: var(--slate);
  font-size: 1.02rem;
  max-width: 600px;
  margin-top: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,.12); }

.service-card img { height: 220px; width: 100%; object-fit: cover; }

.service-body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column; }

.service-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }

.service-body p { font-size: .9rem; color: var(--slate); flex: 1; }

.service-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--clay);
  transition: gap .2s;
}

.service-link:hover { gap: 14px; }

.process-timeline { position: relative; margin-top: 64px; padding-left: 40px; }

.process-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--clay), var(--gold));
  border-radius: 4px;
}

.process-step { position: relative; margin-bottom: 48px; }
.process-step:last-child { margin-bottom: 0; }

.process-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .75rem;
  border: 4px solid var(--mist);
  box-shadow: 0 0 0 3px var(--clay);
}

.section-alt .process-dot { border-color: var(--white); }

.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }

.process-step p { font-size: .92rem; color: var(--slate); max-width: 560px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.gallery-grid .g-item { border-radius: 16px; overflow: hidden; }

.gallery-grid .g-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.gallery-grid .g-item:hover img { transform: scale(1.05); }

.gallery-grid .g-item:nth-child(1),
.gallery-grid .g-item:nth-child(4) { grid-row: span 2; }

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.section-alt .testimonial-card { background: var(--mist); }

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 22px;
  font-size: 4.5rem;
  color: var(--sand);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: .92rem;
  color: var(--slate);
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.testimonial-author { font-weight: 700; font-size: .9rem; }

.testimonial-author span { display: block; font-weight: 500; color: #888; font-size: .82rem; }

.stars { color: var(--gold); font-size: .85rem; margin-bottom: 12px; }

.appointment-wrap {
  background: var(--charcoal);
  border-radius: 28px;
  padding: 64px 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.section-dark .appointment-wrap { background: #2a2a2a; }

.appointment-wrap h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.appointment-wrap > div > p {
  color: rgba(255,255,255,.7);
  margin-top: 14px;
  font-size: .95rem;
}

.appointment-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.appointment-info div { display: flex; align-items: flex-start; gap: 14px; }

.appointment-info i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; }

.appointment-info span { font-size: .9rem; color: rgba(255,255,255,.85); }

form { display: grid; gap: 16px; }

form input,
form select,
form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border .2s, background .2s;
}

form input::placeholder,
form textarea::placeholder { color: rgba(255,255,255,.45); }

form input:focus,
form select:focus,
form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.12); }

form select option { color: #1f1f1f; }

form textarea { min-height: 100px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  background: var(--clay);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
  width: 100%;
}

.form-submit:hover { background: var(--clay-dark); transform: translateY(-2px); }

.form-note { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.form-note a { color: var(--gold); }

.site-footer { background: #151515; color: rgba(255,255,255,.75); padding: 80px 28px 32px; }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .brand { color: #fff; margin-bottom: 18px; }

.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 340px; }

.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a { display: block; font-size: .88rem; padding: 5px 0; transition: color .2s; }

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px;
  margin: 64px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #1f1f1f;
  color: #fff;
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,.3);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p { font-size: .85rem; max-width: 700px; }

.cookie-banner a { color: var(--gold); text-decoration: underline; }

.cookie-banner .cookie-actions { display: flex; gap: 12px; }

.cookie-banner button {
  padding: 11px 26px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
}

.cookie-accept { background: var(--clay); color: #fff; }

.cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3) !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: #fff;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 48px 36px;
  text-align: center;
  animation: pop .35s ease;
}

@keyframes pop {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-box i { font-size: 3rem; color: var(--clay); margin-bottom: 20px; }

.modal-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }

.modal-box p { font-size: .92rem; color: var(--slate); margin-bottom: 26px; }

.modal-box button {
  background: var(--clay);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: .92rem;
}

.modal-box button:hover { background: var(--clay-dark); }

@media (max-width: 1024px) {
  .appointment-wrap { grid-template-columns: 1fr; padding: 44px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    gap: 8px;
  }
  .hero { min-height: auto; padding: 140px 24px 80px; }
  .hero h1 { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-item:nth-child(1),
  .gallery-grid .g-item:nth-child(4) { grid-row: span 1; }
  .trust-bar { gap: 24px; }
}