:root {
  --ink: #061a35;
  --ink-2: #0b2a52;
  --ink-3: #153d6d;
  --gold: #d9a62e;
  --gold-2: #f0c85b;
  --champagne: #f4e6bd;
  --paper: #fbfaf7;
  --paper-2: #f4f0e8;
  --white: #ffffff;
  --text: #1c2a3c;
  --muted: #647084;
  --line: rgba(6, 26, 53, 0.14);
  --success: #0e7a4c;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(6, 26, 53, 0.08);
  --shadow-md: 0 18px 50px rgba(6, 26, 53, 0.12);
  --shadow-lg: 0 30px 80px rgba(6, 26, 53, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-offset: 126px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.65rem, 6.3vw, 5.65rem);
}

h2 {
  font-size: clamp(2.05rem, 4vw, 3.85rem);
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--ink);
  background: var(--gold-2);
}

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: var(--header-offset);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 122px) 0;
}

.section-sm {
  padding: clamp(48px, 6vw, 78px) 0;
}

.section-ink {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 166, 46, 0.12), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.06), transparent 24%),
    var(--ink);
}

.section-ink h2,
.section-ink h3,
.section-ink h4 {
  color: var(--white);
}

.section-paper-2 {
  background: var(--paper-2);
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 770px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 0;
  color: #7d5b08;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.section-ink .eyebrow {
  color: var(--gold-2);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.section-ink .lead {
  color: rgba(255, 255, 255, 0.72);
}

.kicker-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--champagne);
  border: 1px solid rgba(217, 166, 46, 0.45);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.gold-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(217, 166, 46, 0.17);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 28px rgba(217, 166, 46, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(217, 166, 46, 0.36);
}

.btn-ink {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(6, 26, 53, 0.18);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(6, 26, 53, 0.22);
}

.section-ink .btn-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.btn-text::after {
  content: "→";
  transition: transform var(--transition);
}

.btn-text:hover::after {
  transform: translateX(5px);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.site-shell {
  min-height: 100vh;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  pointer-events: none;
}

.header-stack {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(6, 26, 53, 0.1);
}

.topbar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--ink);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-message {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.topbar a {
  transition: color var(--transition);
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-links .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.topbar a:hover {
  color: var(--gold-2);
}

.site-header {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.98);
}

.nav-shell {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(217, 166, 46, 0.45);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(6, 26, 53, 0.12);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin-top: 5px;
  color: #8d6812;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 13px;
  color: #2c3a4d;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color var(--transition), background var(--transition);
}

.nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: rgba(217, 166, 46, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  display: grid;
  color: var(--ink);
  line-height: 1.1;
  text-align: right;
}

.header-call small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 0.9rem;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--white);
  border-radius: 10px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.menu-toggle-lines::before {
  top: -7px;
  left: 0;
}

.menu-toggle-lines::after {
  top: 7px;
  left: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-quick-actions {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(52px, 7vw, 92px) 0 clamp(62px, 8vw, 108px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 232, 0.92)),
    var(--paper-2);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  filter: blur(1px);
}

.hero::before {
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(217, 166, 46, 0.2), rgba(217, 166, 46, 0));
}

.hero::after {
  bottom: -220px;
  left: -130px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(6, 26, 53, 0.08);
  box-shadow: 0 0 0 40px rgba(6, 26, 53, 0.025), 0 0 0 90px rgba(6, 26, 53, 0.018);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 86px);
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  margin: 18px 0 24px;
  font-size: clamp(2.65rem, 5.2vw, 4.75rem);
}

.hero-copy h1 .accent {
  display: block;
  color: #9a700d;
}

.hero-copy .lead {
  max-width: 620px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #334056;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.84rem;
  font-weight: 750;
}

.hero-checks li::before {
  display: grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  padding: clamp(12px, 2vw, 20px);
  background: var(--white);
  border: 1px solid rgba(6, 26, 53, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-frame::before {
  position: absolute;
  inset: 14px;
  z-index: -1;
  content: "";
  border: 2px solid rgba(217, 166, 46, 0.55);
  border-radius: calc(var(--radius-lg) - 8px);
  transform: translate(20px, 20px);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  background: var(--paper-2);
  border-radius: calc(var(--radius-lg) - 12px);
  object-fit: contain;
}

.image-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
}

.hero-image-frame .image-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: calc(100% - 56px);
}

.hero-badge {
  position: absolute;
  top: -22px;
  left: -26px;
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  padding: 14px;
  color: var(--white);
  background: var(--ink);
  border: 5px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.hero-badge span {
  display: block;
  color: var(--gold-2);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 26, 53, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon,
.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--ink);
  background: var(--champagne);
  border: 1px solid rgba(217, 166, 46, 0.46);
  border-radius: 15px;
  font-size: 1.3rem;
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
}

.trust-item small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.split-layout.reverse .split-media {
  order: 2;
}

.split-copy h2 {
  margin: 18px 0 24px;
}

.split-copy .lead {
  margin-bottom: 22px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 31px;
}

.feature-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  content: "✓";
  place-items: center;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.media-card {
  position: relative;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.media-card img {
  width: 100%;
  height: auto;
  background: var(--paper-2);
  border-radius: calc(var(--radius-lg) - 10px);
  object-fit: contain;
}

.media-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 8px 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.media-card figcaption strong {
  color: var(--ink);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  content: "";
  border: 24px solid rgba(217, 166, 46, 0.09);
  border-radius: 50%;
}

.service-card:hover {
  border-color: rgba(217, 166, 46, 0.64);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(6, 26, 53, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 26px 0 14px;
}

.service-card p {
  color: var(--muted);
}

.service-card .btn-text {
  margin-top: auto;
  padding-top: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-pill {
  display: grid;
  min-height: 155px;
  place-items: center;
  padding: 22px 14px;
  color: var(--white);
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  border: 1px solid rgba(240, 200, 91, 0.18);
  border-radius: 18px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.category-pill:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.category-pill .category-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 1.35rem;
}

.category-pill strong {
  display: block;
  margin-top: 13px;
  font-size: 0.9rem;
}

.category-pill small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.71rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.benefit-card h3 {
  margin-bottom: 7px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.counter-item {
  padding: 28px 22px;
  text-align: center;
}

.counter-item + .counter-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.counter-value {
  display: block;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.counter-label {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

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

.process-step {
  position: relative;
  min-height: 270px;
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  counter-increment: process;
}

.process-step::before {
  display: grid;
  width: 52px;
  height: 52px;
  content: counter(process, decimal-leading-zero);
  place-items: center;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 25px 0 12px;
  font-size: 1.35rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 51px;
  right: -14px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  content: "→";
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
}

.pickup-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 80px);
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 85% 15%, rgba(217, 166, 46, 0.19), transparent 26%),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.pickup-panel h2,
.pickup-panel h3 {
  color: var(--white);
}

.pickup-panel .eyebrow {
  color: var(--gold-2);
}

.pickup-panel .media-card {
  box-shadow: none;
}

.price-preview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(30px, 6vw, 74px);
}

.price-table-wrap {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

.price-table th,
.price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
}

.price-table td:last-child {
  color: #7d5b08;
  font-weight: 850;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-note {
  padding: 16px 18px;
  color: var(--muted);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

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

.care-guide-card {
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow-sm);
}

.care-guide-card h3 {
  margin: 18px 0 11px;
  font-size: 1.35rem;
}

.care-guide-card p {
  color: var(--muted);
  font-size: 0.89rem;
}

.area-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: clamp(30px, 5vw, 60px);
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(145deg, var(--ink-2), var(--ink));
  border: 1px solid rgba(240, 200, 91, 0.25);
  border-radius: var(--radius-lg);
}

.area-card h2,
.area-card h3 {
  color: var(--white);
}

.area-location {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.area-location strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.1rem;
}

.area-location address {
  margin-top: 7px;
  font-style: normal;
}

.visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.visual-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.visual-card-copy {
  padding: 24px;
}

.visual-card-copy h3 {
  margin-bottom: 9px;
}

.visual-card-copy p {
  color: var(--muted);
  font-size: 0.88rem;
}

.visual-card .image-label {
  position: absolute;
  top: 14px;
  right: 14px;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  content: "+";
  place-items: center;
  color: var(--ink);
  background: var(--champagne);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(32px, 6vw, 66px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  border: 1px solid rgba(240, 200, 91, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-banner::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  content: "";
  border: 35px solid rgba(217, 166, 46, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner .button-row {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-card strong {
  display: block;
  color: var(--ink);
}

.contact-card span,
.contact-card address {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.form-card {
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  margin-bottom: 8px;
}

.form-card > p {
  margin-bottom: 28px;
  color: var(--muted);
}

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

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid rgba(6, 26, 53, 0.18);
  border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 166, 46, 0.13);
  outline: 0;
}

textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

.form-error {
  min-height: 1.15em;
  color: var(--danger);
  font-size: 0.75rem;
}

.form-control[aria-invalid="true"] {
  border-color: var(--danger);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.form-actions .btn[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  display: none;
  padding: 13px 15px;
  margin-top: 18px;
  border-radius: 12px;
  font-size: 0.84rem;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #075b37;
  background: #e9f7ef;
  border: 1px solid #b7e3ca;
}

.form-status.error {
  color: #8f1d17;
  background: #fff0ef;
  border: 1px solid #f3c1bd;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 124px) 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 82% 24%, rgba(217, 166, 46, 0.2), transparent 25%),
    linear-gradient(135deg, var(--ink-2), var(--ink));
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  z-index: -1;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid rgba(240, 200, 91, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(240, 200, 91, 0.05), 0 0 0 100px rgba(240, 200, 91, 0.03);
}

.page-hero .eyebrow {
  color: var(--gold-2);
}

.page-hero h1 {
  max-width: 880px;
  margin: 16px 0 20px;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  font-size: 0.82rem;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--gold-2);
  content: "/";
}

.breadcrumb a:hover {
  color: var(--gold-2);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  margin: 20px 0 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
}

.timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 28px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--gold), rgba(217, 166, 46, 0.12));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 0 0 30px;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-2);
  border: 7px solid var(--paper);
  border-radius: 50%;
  font-weight: 900;
}

.timeline-content {
  padding: 23px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.timeline-content h3 {
  margin-bottom: 9px;
  font-size: 1.3rem;
}

.timeline-content p {
  color: var(--muted);
}

.detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  margin-bottom: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.detail-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
}

.detail-nav a:hover {
  background: var(--champagne);
}

.service-detail-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(36px, 7vw, 80px);
  padding: clamp(50px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}

.service-detail-section:last-child {
  border-bottom: 0;
}

.service-detail-section h2 {
  margin: 14px 0 22px;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.service-detail-aside {
  padding: 28px;
  background: var(--ink);
  border-radius: var(--radius-md);
}

.service-detail-aside h3 {
  color: var(--white);
}

.service-detail-aside ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
}

.service-detail-aside li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-detail-aside li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-layout {
  display: grid;
  gap: 36px;
}

.pricing-category {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.pricing-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--white);
  background: var(--ink);
}

.pricing-category-header h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.7rem;
}

.pricing-category-header span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.pricing-table-full th,
.pricing-table-full td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table-full td:last-child {
  color: #7d5b08;
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.pricing-table-full tr:last-child td {
  border-bottom: 0;
}

.rate-card-figure {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.rate-card-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.rate-card-figure figcaption {
  padding: 15px 8px 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.gallery-card {
  grid-column: span 6;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-card.wide {
  grid-column: span 12;
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gallery-caption {
  padding: 22px;
}

.gallery-caption h3 {
  margin-bottom: 8px;
}

.gallery-caption p {
  color: var(--muted);
  font-size: 0.88rem;
}

.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  color: #5c4609;
  background: #fff9e8;
  border: 1px solid #eed997;
  border-radius: 16px;
}

.policy-content {
  display: grid;
  gap: 30px;
}

.policy-content section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 13px;
  font-size: 1.7rem;
}

.policy-content h3 {
  margin: 22px 0 10px;
  font-size: 1.2rem;
}

.policy-content p,
.policy-content li {
  color: #526074;
}

.policy-content ul,
.policy-content ol {
  padding-left: 22px;
}

.credits-list {
  display: grid;
  gap: 16px;
}

.credit-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.credit-card h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.credit-card p {
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #020c1a;
}

.footer-top {
  padding: 78px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.75fr 1fr;
  gap: 40px;
}

.footer-brand .brand-name,
.footer-brand .brand-subtitle {
  color: var(--white);
}

.footer-brand .brand-subtitle {
  color: var(--gold-2);
}

.footer-about {
  max-width: 360px;
  margin-top: 20px;
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.88rem;
}

.footer-links a {
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 11px;
  font-size: 0.86rem;
}

.footer-contact-item svg {
  margin-top: 4px;
  color: var(--gold-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.floating-actions {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 900;
  display: grid;
  gap: 12px;
}

.floating-btn {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-btn:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px) scale(1.03);
}

.floating-btn img {
  width: 28px;
  height: 28px;
}

.floating-btn.whatsapp {
  background: #149f57;
}

.floating-btn.call {
  background: var(--ink-2);
}

.floating-btn::after {
  position: absolute;
  z-index: -1;
  inset: -4px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 3.6s ease-out infinite;
}

.floating-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: max-content;
  max-width: 180px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(2, 12, 26, 0.94);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity var(--transition), transform var(--transition);
}

.floating-btn:hover .floating-tooltip,
.floating-btn:focus-visible .floating-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.back-to-top {
  position: fixed;
  right: max(23px, env(safe-area-inset-right));
  bottom: max(160px, calc(env(safe-area-inset-bottom) + 160px));
  z-index: 850;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

@keyframes ripple {
  0% { opacity: 0.45; transform: scale(0.88); }
  70% { opacity: 0; transform: scale(1.38); }
  100% { opacity: 0; transform: scale(1.38); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
