:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --card: #ffffff;
  --card-strong: #ffffff;
  --text: #111827;
  --muted: #5b6472;
  --line: rgba(17, 24, 39, 0.12);
  --accent: #e04b4b;
  --accent-strong: #c93b3b;
  --accent-soft: #fde8e8;
  --navy: #101826;
  --navy-soft: #172335;
  --shadow: 0 18px 36px rgba(16, 24, 38, 0.08);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(224, 75, 75, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(16, 24, 38, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 24%, #f5f8fc 100%);
  min-height: 100vh;
  font-feature-settings: "liga" 1, "kern" 1;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.04), transparent 160px),
    linear-gradient(90deg, rgba(16, 24, 38, 0.04), transparent 18%, transparent 82%, rgba(16, 24, 38, 0.04));
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 40px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 18px max(16px, calc((100vw - var(--max-width)) / 2)) 16px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: none;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #f06a5f);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 24px rgba(23, 50, 77, 0.2);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.brand-text small {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a {
  position: relative;
  padding: 8px 2px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: color 160ms ease, border-color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--text);
}

.panel {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.announcement {
  width: 100%;
  margin: 0 auto;
  padding: 5px;
  text-align: center;
}

.announcement p {
  margin: 0 auto;
  color: var(--accent-strong);
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  padding: 30px max(16px, calc((100vw - var(--max-width)) / 2)) 34px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.eyebrow,
.section-kicker,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.hero h1,
.section h2,
.hero-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 5.6rem);
  margin-top: 12px;
  color: #ffffff;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin: 18px 0 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-points div,
.visit-card,
.service-card,
.photo-card {
  border-radius: 0;
}

.hero-points div {
  padding: 10px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-points div:last-child {
  border-right: none;
}

.hero-points span,
.visit-card span {
  display: block;
  color: inherit;
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.hero-points strong,
.visit-card strong {
  font-size: 1rem;
}

.hero-card {
  padding: 28px 0 0 24px;
  background: transparent;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: flex-start;
  gap: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #ffffff;
}

.hero-card p,
.hero-card li,
.hero-card .card-label {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.hero-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.section {
  width: 100%;
  margin: 0 auto;
  padding: 32px max(16px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
}

#about {
  background: #ffffff;
}

#services {
  background: #f8fafc;
}

#process {
  background: #ffffff;
}

#gallery {
  background: #f7f9fb;
}

#visit {
  background: #ffffff;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
}

.section-title-block h2,
.classic-heading h2 {
  margin-top: 10px;
}

.section-copy-block{
  align-content: center;
}

.grid-2,
.visit-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 10px;
  color: var(--text);
}

.section p {
  color: var(--muted);
  line-height: 1.8;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  flex-wrap: wrap;
}

.classic-heading {
  margin-bottom: 18px;
}

.section-heading-row p {
  margin: 0;
}

.info-table {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
}

.info-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.info-row:first-child {
  border-top: none;
}

.info-label {
  font-weight: 700;
  color: var(--text);
}

.info-value {
  color: var(--muted);
  line-height: 1.6;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step-card {
  padding: 18px 18px 18px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-right: 1px solid var(--line);
}

.step-card:last-child {
  border-right: none;
}

.step-card span {
  display: inline-block;
  min-width: 34px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--accent);
  background: transparent;
  color: var(--accent-strong);
  font-weight: 700;
}

.step-card h3 {
  margin: 14px 0 8px;
  font-size: 1.2rem;
}

.step-card p {
  margin: 0;
}

.classic-gallery .photo-card {
  min-height: 250px;
}

.service-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(16, 24, 38, 0.05);
}

.service-index {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
}

.gallery-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-card {
  aspect-ratio: 4 / 5;
  padding: 0;
  display: flex;
  align-items: end;
  color: #ffffff;
  border: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--line);
}

.photo-card:last-child {
  border-right: none;
}

.photo-image {
  background: #ffffff;
}

.photo-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.photo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0.05) 35%, rgba(16, 32, 51, 0.55) 100%);
}

.photo-image figcaption {
  position: relative;
  z-index: 1;
}

.photo-card figcaption {
  font-weight: 700;
}

.photo-one {
  background:
    linear-gradient(180deg, rgba(16, 32, 51, 0.05), rgba(16, 32, 51, 0.12)),
    linear-gradient(135deg, #183846, #7d938f);
}

.photo-two {
  background:
    linear-gradient(180deg, rgba(16, 32, 51, 0.05), rgba(16, 32, 51, 0.12)),
    linear-gradient(135deg, #21424e, #a1afa5);
}

.photo-three {
  background:
    linear-gradient(180deg, rgba(16, 32, 51, 0.05), rgba(16, 32, 51, 0.12)),
    linear-gradient(135deg, #1d3340, #c1c7bf);
}

.visit-card {
  padding: 18px 0 0;
  background: transparent;
  display: grid;
  gap: 16px;
}

.map-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f06a5f);
  color: #ffffff;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(23, 50, 77, 0.18);
}

.map-link:hover,
.map-link:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent-strong), #de5f54);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  padding: 18px max(16px, calc((100vw - var(--max-width)) / 2)) 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero,
  .grid-2,
  .section-split,
  .visit-layout,
  .service-grid,
  .step-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .topbar,
  .section-heading-row {
    align-items: start;
  }

  .hero-card {
    padding: 18px 0 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
    padding-top: 0;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .nav a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero-points div:last-child {
    border-bottom: none;
  }

  .step-grid,
  .gallery-grid {
    border-bottom: none;
  }

  .step-card,
  .photo-card {
    border-right: none;
    border-top: 1px solid var(--line);
  }

  .step-card:first-child,
  .photo-card:first-child {
    border-top: none;
  }

  .footer {
    flex-direction: column;
  }
}
