﻿:root {
  --bg-top: #f8f1df;
  --bg-bottom: #ead2b0;
  --surface: rgba(255, 249, 239, 0.92);
  --surface-strong: rgba(255, 252, 246, 0.96);
  --text: #20170f;
  --muted: #685844;
  --accent: #c3652e;
  --accent-dark: #8f4218;
  --accent-soft: rgba(195, 101, 46, 0.12);
  --line: rgba(96, 71, 43, 0.14);
  --shadow: 0 24px 60px rgba(85, 55, 27, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(195, 101, 46, 0.22), transparent 24%),
    radial-gradient(circle at bottom right, rgba(110, 89, 63, 0.16), transparent 26%),
    linear-gradient(140deg, var(--bg-top) 0%, #f1e2c6 45%, var(--bg-bottom) 100%);
}

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

a {
  color: inherit;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section,
.cta {
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.hero-copy {
  padding: 48px;
}

.hero-panel {
  padding: 24px;
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(195, 101, 46, 0.15), rgba(255, 255, 255, 0.88)),
    var(--surface-strong);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.96;
}

h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.lead,
.cta-text {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  font-size: 16px;
}

.actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  gap: 12px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff9f4;
  background: linear-gradient(135deg, var(--accent) 0%, #d78446 100%);
  box-shadow: 0 14px 28px rgba(195, 101, 46, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.button-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-card,
.feature,
.detail-card,
.list-card,
.reason-item,
.step,
.faq-item {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(96, 71, 43, 0.12);
  animation: card-rise 0.7s ease both;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(195, 101, 46, 0.16), rgba(233, 194, 144, 0.34));
  color: var(--accent-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  animation: icon-pop 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.icon-large {
  width: 58px;
  height: 58px;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-value {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.35;
}

.content {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.location-hero {
  margin-top: 24px;
}

.location-hero .hero-copy {
  padding: 40px;
}

.location-hero .hero-panel {
  align-content: start;
}

.hero-visual {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(195, 101, 46, 0.16), rgba(255, 255, 255, 0.94)),
    var(--surface-strong);
  border: 1px solid var(--line);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.image-note {
  margin: 0;
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.section-intro {
  max-width: 860px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.location-link-card {
  display: block;
  padding: 24px;
  border-radius: 24px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(96, 71, 43, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(195, 101, 46, 0.28);
  box-shadow: 0 16px 30px rgba(85, 55, 27, 0.12);
}

.location-link-card h3,
.location-link-card p,
.location-link-card .location-meta {
  margin-bottom: 0;
}

.location-link-card h3 {
  margin-bottom: 10px;
}

.location-link-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.location-meta {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.location-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(96, 71, 43, 0.12);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section {
  padding: 40px;
}

.section-heading {
  margin-bottom: 28px;
}

.two-col-text,
.details-grid,
.list-grid,
.reasons,
.faq-list {
  display: grid;
  gap: 18px;
}

.two-col-text {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-col-text p,
.feature p,
.detail-card p,
.list-card p,
.reason-item p,
.step p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.details-grid,
.list-grid,
.reasons,
.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 18px 20px;
  font-size: 18px;
  line-height: 1.6;
}

.step-number,
.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 32px 40px;
  background:
    linear-gradient(135deg, rgba(195, 101, 46, 0.12), rgba(255, 255, 255, 0.88)),
    var(--surface-strong);
}

.mini-card:nth-child(2),
.feature:nth-child(2),
.detail-card:nth-child(2),
.list-card:nth-child(2),
.reason-item:nth-child(2),
.step:nth-child(2),
.faq-item:nth-child(2) {
  animation-delay: 0.08s;
}

.mini-card:nth-child(3),
.feature:nth-child(3),
.detail-card:nth-child(3),
.list-card:nth-child(3),
.reason-item:nth-child(3),
.step:nth-child(3),
.faq-item:nth-child(3) {
  animation-delay: 0.16s;
}

.detail-card:nth-child(4),
.reason-item:nth-child(4),
.faq-item:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes icon-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.82);
  }

  70% {
    opacity: 1;
    transform: translateY(0) scale(1.06);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .mini-card,
  .feature,
  .detail-card,
  .list-card,
  .reason-item,
  .step,
  .faq-item,
  .icon-badge {
    animation: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero,
  .features,
  .steps,
  .gallery,
  .locations-grid,
  .two-col-text,
  .details-grid,
  .list-grid,
  .reasons,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    margin: 10px auto;
    padding: 10px;
    border-radius: 22px;
  }

  .hero-copy,
  .section,
  .hero-panel,
  .cta,
  .mini-card,
  .feature,
  .detail-card,
  .list-card,
  .reason-item,
  .step,
  .faq-item {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .lead,
  .section-intro,
  .cta-text,
  .two-col-text p,
  .feature p,
  .detail-card p,
  .list-card p,
  .reason-item p,
  .step p,
  .faq-item p,
  .location-link-card p,
  .location-list li,
  .gallery-card figcaption {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .gallery-card img {
    height: 240px;
  }
}
