:root {
  --ink: #171410;
  --muted: #696156;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --line: #e5d9c8;
  --taupe: #9a6a43;
  --taupe-dark: #6c472a;
  --charcoal: #171410;
  --shadow: 0 28px 80px rgba(32, 24, 16, .16);
  --radius: 28px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,239,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,217,200,.75);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.25rem;
  line-height: 1;
}
.brand span {
  display: block;
  margin-top: 6px;
  color: var(--taupe);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}
.links a:hover { color: var(--ink); }
.dropdown { position: relative; display: flex; align-items: center; align-self: stretch; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}
.dropdown-toggle::after {
  content: "⌄";
  font-size: .9em;
  line-height: 1;
  transform: translateY(-1px);
}
.dropdown:hover .dropdown-toggle,
.dropdown:focus-within .dropdown-toggle { color: var(--ink); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  padding: 14px 10px 10px;
  border-radius: 18px;
  background: rgba(255,253,248,.96);
  border: 1px solid rgba(229,217,200,.9);
  box-shadow: 0 22px 60px rgba(32,24,16,.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.2;
}
.dropdown-menu a:hover {
  background: #f3e6d5;
  color: var(--taupe-dark);
}
.dropdown-menu span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: var(--taupe);
  box-shadow: 0 16px 34px rgba(106, 71, 42, .24);
}
.btn-primary:hover { background: var(--taupe-dark); }
.btn-outline {
  background: rgba(255,255,255,.72);
  border-color: rgba(106, 71, 42, .28);
}
.btn-light {
  background: #fff7e9;
  color: var(--charcoal);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.hero { padding: 58px 0 76px; }
.hero.center { text-align: center; padding: 70px 0 38px; }
.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 4.35vw, 4.9rem);
  line-height: .96;
  max-width: 700px;
}
.hero.center h1 {
  margin: 0 auto;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  line-height: .94;
  max-width: 850px;
}
.hero p {
  margin: 0 0 28px;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.65vw, 1.22rem);
}
.hero.center p { margin-left: auto; margin-right: auto; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
  font-size: .86rem;
}
.proof-line span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  white-space: nowrap;
}

.hero-photo { position: relative; min-height: 640px; }
.hero-photo-frame {
  position: absolute;
  inset: 0 0 104px 0;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(255,255,255,.78);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 22px 60px rgba(32,24,16,.18);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.hero-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--ink);
}
.hero-card span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.hero-card-prices { display: flex; gap: 10px; }
.hero-card-price, .hero-card-badge {
  min-width: 128px;
  padding: 13px 14px;
  border-radius: 18px;
  background: #f3e6d5;
  color: var(--taupe-dark);
  text-align: center;
  font-weight: 950;
  line-height: 1.05;
  white-space: nowrap;
}
.hero-card-price small, .hero-card-badge small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

section { padding: 76px 0; }
.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  line-height: .95;
}
.section-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 650px;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.image-panel {
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}
.image-panel.compact { min-height: 380px; max-height: 420px; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: .96;
}
.copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3e6d5;
  color: var(--taupe-dark);
  font-weight: 950;
  margin-top: -1px;
}

.statement, .source-band, .service-band {
  background: var(--charcoal);
  color: #fff7ea;
  padding: 82px 0;
}
.statement-grid, .service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.statement h2, .service-band h2, .source-band h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.5rem);
  line-height: .94;
}
.statement p, .service-band p, .source-band p {
  margin: 0;
  color: #dacbbb;
  font-size: 1.12rem;
  max-width: 620px;
}
.source-band { text-align: center; }
.source-band h2 { margin: 0 auto 12px; max-width: 800px; }
.source-band p { margin: 0 auto 26px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(32,24,16,.075);
}
.card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}
.card-body, .card {
  padding: 24px;
}
.card:has(img) { padding: 0; }
.card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: -.025em;
}
.card p { margin: 0; color: var(--muted); }

.process { background: #fffaf2; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(32,24,16,.065);
}
.step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3e6d5;
  color: var(--taupe-dark);
  font-weight: 950;
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); font-size: .96rem; }

.gallery-section { padding: 42px 0 86px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 18px;
}
.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(32,24,16,.075);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd;
  transition: transform .25s ease;
}
.gallery-card:hover img { transform: scale(1.025); }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.84);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
}
.lightbox button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.contact-section { padding: 32px 0 92px; }
.contact-grid {
  max-width: 680px;
  margin: 0 auto;
  display: block;
}
.form-card {
  border-radius: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(32,24,16,.075);
  padding: 30px;
}
form { display: grid; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 850;
  color: #362d24;
  font-size: .9rem;
}
input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border-radius: 15px;
  border: 1px solid #ded2c2;
  background: #fffdf9;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 4px rgba(154,106,67,.14);
}
textarea { min-height: 130px; resize: vertical; }

footer {
  background: #100d0a;
  color: #d8c9ba;
  padding: 34px 0;
  font-size: .95rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer strong { color: #fff7ea; }
footer a { color: #fff7ea; }

@media (max-width: 1120px) {
  .links { display: none; }
  .hero-grid, .split, .split.reverse, .statement-grid, .service-grid { grid-template-columns: 1fr; }
  .hero-photo { min-height: 540px; }
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav { min-height: 68px; }
  .brand { font-size: 1.1rem; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(2.25rem, 10vw, 3.35rem); max-width: 100%; }
  .proof-line { flex-wrap: wrap; }
  .hero-photo { min-height: 520px; }
  .hero-photo-frame { inset: 0 0 150px 0; border-radius: 30px; }
  .hero-card { left: 14px; right: 14px; padding: 18px; grid-template-columns: 1fr; }
  .hero-card-prices { flex-wrap: wrap; }
  .hero-card-price, .hero-card-badge { width: 100%; }
  section { padding: 54px 0; }
  .image-panel, .image-panel.compact { min-height: 320px; }
  .cards, .steps, .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-card { padding: 22px; border-radius: 30px; }
  .btn { width: 100%; }
}
