:root {
  --cream: #fbf4ea;
  --paper: #fffaf4;
  --sand: #e9d3b8;
  --rose: #c89188;
  --gold: #b98b46;
  --gold-soft: #ead4aa;
  --ink: #1f1a18;
  --muted: #70665f;
  --line: rgba(31, 26, 24, 0.11);
  --shadow: 0 22px 70px rgba(31, 26, 24, 0.14);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 145, 136, 0.15), transparent 34rem),
    linear-gradient(180deg, #fffaf4 0%, var(--cream) 42%, #fffaf4 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

:focus-visible {
  outline: 3px solid rgba(185, 139, 70, 0.72);
  outline-offset: 4px;
}

.button:focus-visible,
.nav a:focus-visible,
.mobile-sticky-cta a:focus-visible,
.lightbox-close:focus-visible {
  outline-color: var(--gold-soft);
  box-shadow: 0 0 0 6px rgba(185, 139, 70, 0.18);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  letter-spacing: 0;
}

.brand span {
  color: #51473f;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #39302c;
}

.nav a:hover,
.nav a.active {
  background: rgba(177, 132, 66, 0.14);
  color: #111;
}

.nav-cta {
  border: 1px solid rgba(177, 132, 66, 0.35);
  background: rgba(255, 255, 255, 0.45);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.menu-toggle span::before { transform: translateY(-7px); }
.menu-toggle span::after { transform: translateY(5px); }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: translateY(1px) rotate(45deg); background: var(--ink); }
.menu-open .menu-toggle span::after { transform: translateY(-1px) rotate(-45deg); background: var(--ink); }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section.tight { padding: clamp(36px, 6vw, 72px) 0; }

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5.7vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 700px;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  overflow-wrap: break-word;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #2b211e;
}

.hero-cinematic {
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 48%, rgba(0, 0, 0, 0.28), transparent 28rem),
    linear-gradient(90deg, rgba(10, 7, 6, 0.95) 0%, rgba(31, 26, 24, 0.78) 46%, rgba(31, 26, 24, 0.2) 100%),
    linear-gradient(0deg, rgba(20, 15, 13, 0.7), transparent 62%);
  z-index: -1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.035);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 72px;
  transform: translateY(18px);
  animation: heroRise 900ms ease 120ms both;
  position: relative;
  z-index: 2;
}

.hero p {
  max-width: 660px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.56);
}

.hero h1 {
  max-width: 990px;
  font-size: clamp(3.25rem, 7.4vw, 6.85rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.62), 0 20px 70px rgba(0, 0, 0, 0.46);
}

.hero h1 span {
  display: block;
}

.hero-glow {
  position: absolute;
  inset: auto 6% 8% auto;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 212, 170, 0.32), rgba(201, 145, 136, 0.14) 38%, transparent 68%);
  filter: blur(4px);
  animation: glowFloat 9s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 34px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.hero-phone {
  display: inline-flex;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 5px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(34, 29, 27, 0.16);
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
  pointer-events: none;
}

.button:hover::after {
  left: 120%;
}

.button.primary {
  background: linear-gradient(135deg, #9f7331, #d2aa64);
  color: #fff;
  box-shadow: 0 16px 34px rgba(177, 132, 66, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
  color: #fff;
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button.light {
  background: rgba(255, 250, 244, 0.76);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  background: var(--paper);
  padding: 24px 18px;
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.93rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(34, 29, 27, 0.07);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 54px rgba(34, 29, 27, 0.11);
  border-color: rgba(185, 139, 70, 0.24);
}

.card.pad { padding: 24px; }

.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.service-card ul,
.team-card ul,
.legal-content ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li,
.team-card li,
.legal-content li { margin: 6px 0; }

.image-card {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.image-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.image-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  background: rgba(34, 29, 27, 0.66);
  backdrop-filter: blur(14px);
  color: #fff;
  border-radius: var(--radius);
}

.image-caption p { color: rgba(255, 255, 255, 0.82); }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.highlight-band {
  background:
    radial-gradient(circle at 80% 22%, rgba(185, 139, 70, 0.22), transparent 24rem),
    linear-gradient(135deg, #171210, #2a211e 58%, #4b352f);
  color: #fff;
}

.highlight-band p { color: rgba(255, 255, 255, 0.76); }

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table caption {
  text-align: left;
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.price-table th,
.price-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table th {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: left;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  white-space: nowrap;
  color: var(--ink);
  font-weight: 800;
}

.note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(177, 132, 66, 0.1);
  color: #4c4038;
}

.team-card {
  padding: 24px;
}

.team-avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), #fff, var(--rose));
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}

.gallery-grid .image-card:first-child {
  grid-row: span 2;
}

.gallery-grid .image-card,
.gallery-grid .image-card img {
  min-height: 280px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  display: block;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #3c332e;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(34, 29, 27, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--muted);
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-message.success {
  display: block;
  background: rgba(54, 132, 87, 0.13);
  color: #23533a;
}

.form-message.error {
  display: block;
  background: rgba(156, 58, 45, 0.13);
  color: #843024;
}

.map-consent {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.footer {
  padding: 48px 0 28px;
  background: #171312;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover { color: #fff; }

.footer-links {
  display: grid;
  gap: 8px;
}

.subfooter {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  padding: clamp(118px, 14vw, 170px) 0 clamp(54px, 8vw, 92px);
  background:
    linear-gradient(120deg, rgba(255, 250, 243, 0.92), rgba(234, 216, 193, 0.72)),
    var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 18%;
  width: min(44vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 139, 70, 0.16), rgba(201, 145, 136, 0.08) 46%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p {
  margin-top: 18px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.legal-content p {
  margin-top: 12px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tonal {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(234, 216, 193, 0.52)),
    var(--cream);
}

.editorial {
  align-items: stretch;
}

.quote-panel,
.conversion-band,
.form-panel,
.price-card,
.price-note-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.92);
  box-shadow: var(--shadow);
}

.quote-panel {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(34, 29, 27, 0.88), rgba(115, 78, 59, 0.76)),
    var(--ink);
  color: #fff;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.15;
}

.quote-panel strong {
  margin-top: 24px;
  color: #f6dfbd;
}

.trust-strip.premium {
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trust-strip.premium .trust-item {
  padding: 22px;
}

.trust-strip.premium .trust-item span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-family: var(--serif);
}

.trust-strip.premium .trust-item small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.service-card.luxe {
  min-height: 320px;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 244, 0.94)),
    var(--paper);
  position: relative;
}

.service-card.luxe h3,
.service-card.luxe p,
.service-card.luxe a {
  position: relative;
  z-index: 1;
}

.service-card.luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(185, 139, 70, 0.4);
  pointer-events: none;
}

.service-card.luxe::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 139, 70, 0.36), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card.luxe:hover::after {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(185, 139, 70, 0.12);
  color: var(--gold);
  font-size: 1.8rem;
  font-family: var(--serif);
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-service-grid .service-card h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.featured-service {
  grid-column: span 2;
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 139, 70, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(31, 26, 24, 0.94), rgba(83, 59, 51, 0.92)) !important;
  color: #fff;
}

.featured-service p {
  color: rgba(255, 255, 255, 0.76);
}

.featured-service a {
  color: var(--gold-soft);
}

.service-card a,
.mini-actions a {
  color: var(--gold);
  font-weight: 900;
}

.look-advice-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(201, 145, 136, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 244, 232, 0.78));
}

.advice-layout {
  align-items: stretch;
}

.advice-card-grid,
.trust-card-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.advice-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advice-card,
.trust-card,
.process-step {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 244, 0.96)),
    var(--paper);
  box-shadow: 0 16px 42px rgba(34, 29, 27, 0.08);
  overflow: hidden;
}

.advice-card {
  background:
    radial-gradient(circle at 86% 12%, rgba(185, 139, 70, 0.12), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 244, 0.96)),
    var(--paper);
}

.advice-card span,
.trust-card span,
.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 900;
}

.advice-card h3,
.trust-card h3,
.process-step h3 {
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

.advice-card p,
.trust-card p,
.process-step p {
  margin-top: 10px;
}

.why-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(185, 139, 70, 0.13), transparent 24rem),
    #fffaf4;
}

.trust-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover,
.process-step:hover,
.advice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 260px;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 139, 70, 0.28), transparent);
  z-index: 0;
}

.process-step span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(185, 139, 70, 0.12);
}

.conversion-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  background:
    linear-gradient(120deg, rgba(255, 250, 243, 0.96), rgba(234, 216, 193, 0.78)),
    var(--paper);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card,
.price-note-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 26px;
  box-sizing: border-box;
  overflow: hidden;
}

.price-card.featured {
  background:
    linear-gradient(145deg, rgba(34, 29, 27, 0.94), rgba(87, 62, 51, 0.92)),
    var(--ink);
  color: #fff;
}

.price-card.featured p,
.price-card.featured li span {
  color: rgba(255, 255, 255, 0.72);
}

.price-card.featured .price-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.price-card.featured .mini-actions a {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.price-list {
  list-style: none;
  margin: 22px 0;
  padding: 0;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  color: var(--muted);
}

.price-list strong {
  white-space: nowrap;
  font-size: 1.02rem;
}

.price-intro {
  margin-top: 12px;
  font-size: 0.98rem;
}

.mini-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.mini-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px 12px;
  text-align: center;
  line-height: 1.15;
}

.price-note-panel {
  background:
    linear-gradient(140deg, rgba(177, 132, 66, 0.16), rgba(255, 250, 243, 0.94)),
    var(--paper);
  gap: clamp(16px, 3vw, 26px);
  min-width: 0;
}

.price-note-panel h2 {
  max-width: min(100%, 10.8em);
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.35rem);
  line-height: 0.96;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.price-note-panel p,
.price-note-panel .actions {
  max-width: 100%;
  min-width: 0;
}

.price-note-panel .actions {
  margin-top: auto;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}

.gallery-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.gallery-category-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(185, 139, 70, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: #51453e;
  font-weight: 800;
}

.home-mosaic {
  align-items: stretch;
}

.lightbox-trigger {
  padding: 0;
  border: 0;
  cursor: zoom-in;
  text-align: left;
  color: inherit;
}

.lightbox-trigger span,
.gallery-masonry .image-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(31, 26, 24, 0.68);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-masonry .image-card {
  min-height: auto;
  height: 100%;
}

.gallery-masonry .image-card img {
  min-height: 100%;
}

.gallery-masonry .tall {
  grid-row: span 2;
}

.gallery-masonry .wide {
  grid-column: span 2;
}

.gallery-note {
  grid-column: span 2;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.94), rgba(233, 211, 184, 0.62));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 14, 12, 0.82);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(980px, 92vw);
  max-height: 78vh;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.lightbox p {
  margin-top: 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-open {
  overflow: hidden;
}

.premium-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-team-card {
  position: relative;
  min-height: 610px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 244, 0.96)),
    var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-ring {
  width: min(100%, 310px);
  aspect-ratio: 1;
  margin: 0 auto 26px;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(185, 139, 70, 0.92), rgba(255, 255, 255, 0.7), rgba(201, 145, 136, 0.7));
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.premium-team-card ul {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 18px;
  list-style: none;
  border-radius: 20px;
  background: rgba(31, 26, 24, 0.78);
  backdrop-filter: blur(14px);
  transform: translateY(115%);
  transition: transform 320ms ease;
}

.premium-team-card:hover ul,
.premium-team-card:focus-within ul {
  transform: translateY(0);
}

.premium-team-card li {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-showcase .feature {
  grid-row: span 2;
}

.gallery-showcase .image-card,
.gallery-showcase .image-card img {
  min-height: 310px;
}

.contact-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(177, 132, 66, 0.18), transparent 30%),
    linear-gradient(120deg, rgba(255, 250, 243, 0.96), rgba(234, 216, 193, 0.68));
}

.phone-spotlight {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(234, 212, 170, 0.28), transparent 12rem),
    linear-gradient(145deg, rgba(31, 26, 24, 0.95), rgba(91, 63, 51, 0.92));
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-spotlight span {
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.phone-spotlight strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  overflow-wrap: break-word;
}

.phone-spotlight small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.premium-list a,
.premium-list div {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.premium-list a:hover,
.premium-list div:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 29, 27, 0.08);
}

.map-consent {
  margin-top: 18px;
}

.form-panel {
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 88% 8%, rgba(185, 139, 70, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(255, 246, 235, 0.94));
}

.form-panel > p:not(.eyebrow) {
  margin: 10px 0 22px;
}

.hidden-field {
  display: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(177, 132, 66, 0.22);
  border-color: rgba(177, 132, 66, 0.65);
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(156, 58, 45, 0.54);
}

button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.check a {
  color: var(--gold);
  font-weight: 800;
}

.form-message.info {
  display: block;
  background: rgba(177, 132, 66, 0.13);
  color: #6d4e24;
}

.job-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.job-card.accent {
  background:
    linear-gradient(145deg, rgba(34, 29, 27, 0.95), rgba(96, 67, 52, 0.9)),
    var(--ink);
  color: #fff;
}

.job-card.accent p {
  color: rgba(255, 255, 255, 0.75);
}

.mobile-sticky-cta {
  display: none;
}

.motion-ready .card,
.motion-ready .price-card,
.motion-ready .image-card,
.motion-ready .quote-panel,
.motion-ready .conversion-band,
.motion-ready .premium-team-card,
.motion-ready .gallery-note,
.motion-ready .trust-item,
.motion-ready .advice-card,
.motion-ready .trust-card,
.motion-ready .process-step {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease, box-shadow 180ms ease;
}

.motion-ready .card.is-visible,
.motion-ready .price-card.is-visible,
.motion-ready .image-card.is-visible,
.motion-ready .quote-panel.is-visible,
.motion-ready .conversion-band.is-visible,
.motion-ready .premium-team-card.is-visible,
.motion-ready .gallery-note.is-visible,
.motion-ready .trust-item.is-visible,
.motion-ready .advice-card.is-visible,
.motion-ready .trust-card.is-visible,
.motion-ready .process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(251, 245, 236, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 200ms ease;
    box-shadow: var(--shadow);
  }

  .menu-open .nav { transform: translateY(0); }

  .nav a {
    min-height: 48px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip,
  .grid.three,
  .grid.four,
  .split,
  .contact-grid,
  .footer-grid,
  .price-grid,
  .conversion-band,
  .premium-service-grid,
  .trust-card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .featured-service {
    grid-column: auto;
  }

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

  .advice-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid,
  .gallery-showcase,
  .premium-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13.4vw, 4.55rem);
    line-height: 0.96;
  }

  .hero-content {
    padding-top: 108px;
  }

  .hero-actions,
  .actions {
    display: grid;
  }

  .hero-phone {
    display: block;
  }

  .trust-strip.premium {
    width: min(100% - 24px, 1180px);
    margin-top: -22px;
  }

  .button { width: 100%; }

  .form-row,
  .gallery-grid,
  .gallery-showcase,
  .premium-team-grid,
  .gallery-masonry,
  .advice-card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-auto-rows: 270px;
  }

  .gallery-masonry .tall,
  .gallery-masonry .wide,
  .gallery-note {
    grid-column: auto;
    grid-row: auto;
  }

  .premium-team-card {
    min-height: 570px;
  }

  .price-table td,
  .price-table th {
    font-size: 0.94rem;
  }

  .price-card,
  .price-note-panel {
    min-height: auto;
  }

  .service-card.luxe {
    min-height: auto;
  }

  .gallery-category-row span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .advice-card,
  .trust-card,
  .process-step {
    padding: 22px;
  }

  .process-step {
    min-height: auto;
  }

  .price-note-panel {
    padding: 24px;
  }

  .price-note-panel h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    line-height: 0.95;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(34, 29, 27, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  }

  .mobile-sticky-cta a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-weight: 900;
  }

  .mobile-sticky-cta a:last-child {
    background: #8b6127;
    color: #fff;
  }

  body {
    padding-bottom: 84px;
  }
}

@media (hover: none) {
  .premium-team-card ul {
    position: static;
    margin-top: 18px;
    transform: none;
  }

  .card:hover,
  .advice-card:hover,
  .trust-card:hover,
  .process-step:hover,
  .button:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .advice-card,
  .trust-card,
  .process-step,
  .form-panel {
    padding: 20px;
  }

  .mini-actions {
    grid-template-columns: 1fr;
  }

  .price-note-panel {
    padding: 22px;
    gap: 16px;
  }

  .price-note-panel h2 {
    font-size: clamp(2rem, 12.5vw, 3.2rem);
    line-height: 0.96;
  }
}

@media (max-width: 380px) {
  .price-note-panel {
    padding: 20px;
  }

  .price-note-panel h2 {
    font-size: clamp(1.85rem, 12vw, 2.75rem);
  }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroDrift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-14px, -10px, 0); }
}

@keyframes glowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.82; }
  to { transform: translate3d(-28px, -18px, 0) scale(1.08); opacity: 1; }
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 22px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
