:root {
  --color-primary: #0f2631;
  --color-primary-dark: #07171f;
  --color-accent: #2f7d7b;
  --color-gold: #b89d69;
  --color-background: #f8f3ea;
  --color-surface: #ffffff;
  --color-soft: #eef4f3;
  --color-text: #18313c;
  --color-muted: #667882;
  --color-line: rgba(15, 38, 49, 0.12);
  --font-body: Inter, Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow-sm: 0 14px 38px rgba(15, 38, 49, 0.10);
  --shadow-md: 0 26px 70px rgba(15, 38, 49, 0.18);
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 157, 105, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-surface);
  color: var(--color-primary);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section-soft {
  background: var(--color-soft);
}

.section-dark {
  background: var(--color-primary);
  color: #fffaf1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: #fffaf1;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 243, 234, 0.85);
  color: var(--color-primary);
  box-shadow: 0 1px 0 var(--color-line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, 1320px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(184, 157, 105, 0.65);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 25px;
  color: var(--color-gold);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.15;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta {
  min-height: 46px;
  background: linear-gradient(180deg, #ccb47c, var(--color-gold));
  color: var(--color-primary-dark);
  border-color: rgba(184, 157, 105, 0.3);
  box-shadow: 0 12px 28px rgba(7, 23, 31, 0.16);
  white-space: nowrap;
  min-width: 142px;
}

.nav-menu .nav-cta {
  padding: 13px 26px;
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  box-shadow: 0 10px 24px rgba(15, 38, 49, 0.12);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-primary-dark);
}

.btn-secondary {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.38);
}

.btn-outline {
  color: var(--color-primary);
  border-color: rgba(15, 38, 49, 0.22);
  background: transparent;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 54px) 0 74px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 6rem;
  max-width: 880px;
}

h2 {
  font-size: 4rem;
}

h3 {
  margin: 0 0 9px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.13rem;
}

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

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  color: rgba(255, 250, 241, 0.76);
  font-style: normal;
}

.hero-contact a {
  color: #fffaf1;
  font-weight: 800;
}

.hero-portrait {
  position: relative;
  margin: 0;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(184, 157, 105, 0.42);
  border-radius: var(--radius-md);
}

.hero-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(76vh, 720px);
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-portrait figcaption {
  position: relative;
  z-index: 2;
  width: calc(100% - 44px);
  margin: -52px auto 0;
  padding: 16px 18px;
  background: rgba(248, 243, 234, 0.95);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.trust-strip {
  background: #fffaf1;
  border-bottom: 1px solid var(--color-line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--color-line);
}

.trust-grid span {
  min-height: 108px;
  padding: 24px 18px;
  display: grid;
  align-content: center;
  background: #fffaf1;
  color: var(--color-muted);
}

.trust-grid strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 500;
}

.split,
.why-grid,
.statement-grid,
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.contact {
  overflow: hidden;
}

.contact-grid::before {
  content: "";
  position: absolute;
  inset: -38px -28px auto;
  height: 520px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(223, 232, 231, 0.82)),
    linear-gradient(180deg, rgba(184, 157, 105, 0.12), transparent);
  z-index: 0;
}

.contact-grid > * {
  position: relative;
  z-index: 1;
}

.contact-grid .contact-hero {
  grid-column: 1;
  align-self: center;
}

.contact-grid .contact-card {
  grid-column: 2;
}

.contact-grid .contact-map {
  grid-column: 1;
}

.media-panel {
  margin: 0;
  position: relative;
}

.media-panel img,
.gallery-item img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.media-panel img {
  aspect-ratio: 4 / 5;
}

.section-copy p,
.section-heading p,
.statement-copy p,
.appointment-box p {
  color: var(--color-muted);
}

.section-copy p {
  max-width: 650px;
}

.signature {
  font-family: var(--font-heading);
  color: var(--color-gold) !important;
  font-size: 1.7rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-accent);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

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

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

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

.service-category {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}

.service-category-wide {
  grid-column: 1 / -1;
}

.service-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.service-category-head span {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.service-category-head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 500;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  min-height: 54px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 38, 49, 0.09);
}

.price-list li:last-child,
.price-list-columns li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.price-list span {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.35;
}

.price-list strong {
  color: var(--color-primary);
  font-weight: 900;
  white-space: nowrap;
 }

.service-card,
.reason,
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.service-card p,
.reason p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 2.1rem;
}

.service-note {
  background: transparent;
}

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

.timeline-section .section-heading p,
.timeline-item p {
  color: rgba(255, 250, 241, 0.72);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 62px;
  margin-top: 44px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(184, 157, 105, 0.38);
}

.timeline-item {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.035);
}

.timeline-item:nth-child(even) {
  transform: translateY(44px);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--color-gold);
  box-shadow: 0 0 0 7px rgba(184, 157, 105, 0.15);
}

.timeline-item:nth-child(odd)::before {
  right: -69px;
}

.timeline-item:nth-child(even)::before {
  left: -69px;
}

.timeline-item time {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 2.15rem;
  line-height: 1;
}

.timeline-item h3 {
  color: #fffaf1;
}

.statement {
  align-self: start;
}

.statement-copy {
  padding-left: clamp(0px, 4vw, 42px);
  border-left: 1px solid var(--color-line);
}

.statement-copy strong {
  display: block;
  margin-top: 22px;
  color: var(--color-primary);
  font-size: 1.1rem;
}

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

.gallery-item {
  grid-column: span 3;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 6;
}

.gallery-item img {
  height: 100%;
  aspect-ratio: 4 / 3;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item.wide img {
  aspect-ratio: 16 / 7;
}

.gallery-item:hover img {
  transform: translateY(-3px);
  filter: saturate(1.03) contrast(1.02);
}

.appointment {
  padding-top: 0;
}

.appointment-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  background: var(--color-primary);
  color: #fffaf1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.appointment-box p {
  max-width: 700px;
  color: rgba(255, 250, 241, 0.75);
}

.appointment-box .btn-outline {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.32);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 500;
}

.contact-card address {
  color: var(--color-muted);
  font-style: normal;
}

.contact-card dl {
  margin: 28px 0 0;
}

.contact-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--color-line);
}

.contact-card dt {
  color: var(--color-muted);
}

.contact-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.contact-map {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  filter: saturate(0.88) contrast(0.98);
}

.map-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  padding: 18px 22px 14px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
}

.map-caption strong {
  color: var(--color-primary);
}

.map-caption span {
  text-align: left;
}

.map-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--color-line);
}

.map-info-grid div {
  min-height: 96px;
  padding: 18px;
  display: grid;
  align-content: center;
  background: #fffdf8;
}

.map-info-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.map-info-grid strong {
  color: var(--color-primary);
  font-size: 0.98rem;
  line-height: 1.25;
}

.contact-form {
  grid-column: 2;
  width: 100%;
  justify-self: stretch;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}

.form-intro {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-line);
}

.form-intro h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  font-weight: 500;
}

.form-intro p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--color-muted);
}

.form-row {
  margin-bottom: 18px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 38, 49, 0.18);
  border-radius: var(--radius-sm);
  background: #fffdf8;
  color: var(--color-text);
  font: inherit;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(47, 125, 123, 0.12);
  outline: 0;
}

.form-help,
.form-status {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 1.45em;
  margin: 14px 0 0;
}

.form-status.is-error {
  color: #8a3b2f;
}

.form-status.is-success {
  color: #1f6b53;
}

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

.footer {
  padding: 68px 0 28px;
  background: var(--color-primary-dark);
  color: rgba(255, 250, 241, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.8fr);
  gap: 36px;
}

.footer h2 {
  margin: 0 0 16px;
  color: #fffaf1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer a {
  display: block;
}

.footer .brand {
  color: #fffaf1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
}

.footer-brand .brand-mark {
  margin-bottom: 4px;
}

.footer-brand + p {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 241, 0.12);
}

.mobile-call {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  place-items: center;
  padding: 28px;
  background: rgba(7, 23, 31, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1080px);
  margin: 0;
}

.lightbox img {
  max-height: 82vh;
  width: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: #fffaf1;
  text-align: center;
}

.lightbox button {
  border: 1px solid rgba(255, 250, 241, 0.3);
  background: rgba(255, 250, 241, 0.08);
  color: #fffaf1;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  width: 48px;
  height: 64px;
  font-size: 42px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
