:root {
  --bg: #f7f2ec;
  --bg-soft: #fdfaf6;
  --surface: rgba(255, 252, 248, 0.84);
  --surface-strong: #fffdfa;
  --text: #171513;
  --muted: #625750;
  --line: rgba(34, 28, 24, 0.12);
  --accent: #567c74;
  --accent-deep: #355951;
  --gold: #b89b73;
  --ink: #1e1a18;
  --petal-soft: #dce8e3;
  --shadow: 0 18px 60px rgba(33, 24, 19, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  line-height: 1.6;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top left, rgba(184, 155, 115, 0.12), transparent 32%), radial-gradient(circle at top right, rgba(86, 124, 116, 0.1), transparent 28%), linear-gradient(180deg, #f4ede4 0%, #ede2d5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
  background-image: linear-gradient(rgba(95, 77, 58, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(95, 77, 58, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 88%);
}

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

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

button {
  font: inherit;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

h2 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.lead {
  max-width: 44rem;
  font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, 100% - 2rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(98, 86, 75, 0.22), transparent);
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #201915;
}

.page-background-slide,
.page-background-overlay {
  position: absolute;
  inset: 0;
}

.page-background-slide {
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.02) brightness(0.56);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 900ms ease, transform 4.8s ease;
}

.page-background-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.page-background-overlay {
  background: radial-gradient(circle at top left, rgba(23, 15, 12, 0.42), transparent 32%), radial-gradient(circle at top right, rgba(86, 124, 116, 0.12), transparent 24%), linear-gradient(180deg, rgba(247, 242, 236, 0.8) 0%, rgba(242, 233, 223, 0.88) 100%);
}

.section-grid,
.who-grid,
.contact-grid,
.local-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.feature-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.split-panel {
  padding: 1.8rem;
  border: 1px solid rgba(53, 43, 35, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 248, 240, 0.74));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(34, 28, 24, 0.08);
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 241, 0.72);
}

.nav-shell {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 28, 24, 0.1);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(33, 24, 19, 0.1);
  background: #fff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  min-width: 0;
}

.brand-title {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  position: relative;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -0.38rem;
}

.nav-toggle span::after {
  top: 0.38rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.24rem;
  border: 1px solid rgba(53, 43, 35, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(33, 24, 19, 0.08);
  background: rgba(255, 250, 242, 0.78);
}

.language-pill {
  min-width: 2.9rem;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.language-pill:hover,
.language-pill:focus-visible {
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.language-pill.is-active {
  color: #fff9fc;
  box-shadow: 0 8px 18px rgba(183, 68, 130, 0.24);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.nav-links {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 1rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.8rem;
  border: 1px solid rgba(53, 43, 35, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: rgba(255, 250, 242, 0.96);
}

.nav-links a {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  outline: none;
  color: var(--accent);
  background: rgba(143, 46, 43, 0.08);
}

.nav-open .nav-links {
  display: flex;
}

.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::before {
  transform: rotate(90deg) translateX(0.38rem);
}

.nav-open .nav-toggle span::after {
  opacity: 0;
}

@media (min-width: 900px) {
  .site-nav {
    gap: 1rem;
  }
  .language-switcher {
    order: 2;
    margin-left: 0.25rem;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(33, 24, 19, 0.14);
}

.button-primary {
  color: #fff9fc;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.button-secondary {
  color: var(--text);
  border-color: rgba(53, 43, 35, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.helper-copy {
  margin-top: 0.95rem;
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-card,
.feature-card,
.contact-card,
.info-card {
  border: 1px solid rgba(53, 43, 35, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  background: rgba(255, 252, 248, 0.78);
}

.hero-card {
  padding: 1.35rem;
}

.hero-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-card p {
  font-size: 0.96rem;
}

.feature-card,
.info-card {
  padding: 1.5rem;
}

.feature-card h3,
.info-card h3 {
  margin-bottom: 0.45rem;
}

.feature-card p,
.info-card p {
  margin-top: 0.45rem;
}

.icon-badge {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 16px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(184, 155, 115, 0.16), rgba(86, 124, 116, 0.12));
}

.bullet-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.bullet-list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(169, 138, 87, 0.12);
  background: linear-gradient(135deg, var(--gold), var(--accent));
}

.quote-line {
  margin-top: 1.1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(143, 46, 43, 0.24);
  color: var(--accent-deep);
  font-weight: 600;
}

.local-note {
  padding: 1.35rem;
  border: 1px solid rgba(86, 124, 116, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(86, 124, 116, 0.06);
}

.contact-card {
  padding: 1.6rem;
}

.contact-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.cta-band {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  color: #f8f0e3;
  backdrop-filter: blur(14px);
  background: linear-gradient(135deg, rgba(31, 27, 24, 0.9), rgba(56, 41, 35, 0.9)), linear-gradient(135deg, rgba(86, 124, 116, 0.2), transparent);
}

.cta-band p,
.cta-band .helper-copy {
  color: rgba(248, 240, 227, 0.82);
}

.contact-form-shell {
  display: none;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(53, 43, 35, 0.12);
}

.contact-form-shell h3 {
  margin-bottom: 0.45rem;
}

.contact-form-shell p {
  font-size: 0.96rem;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  color: var(--text);
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(53, 43, 35, 0.14);
  border-radius: 16px;
  resize: vertical;
  color: var(--text);
  font: inherit;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(86, 124, 116, 0.58);
  box-shadow: 0 0 0 4px rgba(86, 124, 116, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.form-alert {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 600;
}

.form-alert[hidden] {
  display: none;
}

.form-alert-success {
  color: #245235;
  border: 1px solid rgba(80, 154, 106, 0.24);
  background: rgba(80, 154, 106, 0.12);
}

.form-alert-error {
  color: #7b2f2f;
  border: 1px solid rgba(166, 72, 72, 0.22);
  background: rgba(166, 72, 72, 0.12);
}

.contact-form[aria-busy=true] .button[type=submit],
.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.hero {
  padding: 2.25rem 0 3.25rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
  justify-items: start;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 62rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border: 1px solid rgba(53, 43, 35, 0.08);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)), rgba(255, 249, 244, 0.72);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% 1.3rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 124, 116, 0.18), transparent 70%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(86, 124, 116, 0.12);
  border-radius: 1.2rem;
  transform: rotate(45deg);
}

.hero-title {
  margin-top: 1rem;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.1;
}

.hero-text {
  max-width: 44rem;
  margin-top: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-highlights {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-highlight {
  min-height: 100%;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(53, 43, 35, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.42);
}

.hero-highlight strong,
.hero-gallery-copy {
  color: var(--ink);
}

.hero-highlight p,
.hero-gallery-copy p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-aside {
  display: none;
}

@media (min-width: 700px) {
  .hero-panel {
    padding: 2.15rem;
  }
  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.section-gallery {
  padding-top: 2rem;
}

.gallery-header {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.gallery-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1rem;
}

.gallery-controls {
  position: absolute;
  inset: 50% 0 auto;
  z-index: 2;
  pointer-events: none;
}

.gallery-control {
  position: absolute;
  top: 50%;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(53, 43, 35, 0.1);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(33, 24, 19, 0.12);
  color: var(--accent-deep);
  cursor: pointer;
  pointer-events: auto;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 45%), linear-gradient(135deg, rgba(255, 252, 248, 0.98), rgba(232, 242, 238, 0.92));
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, opacity 180ms ease;
}

.gallery-control-prev {
  left: 1rem;
  transform: translateY(-50%);
}

.gallery-control-next {
  right: 1rem;
  transform: translateY(-50%);
}

.gallery-control:hover,
.gallery-control:focus-visible {
  transform: translateY(calc(-50% - 2px)) scale(1.02);
  border-color: rgba(86, 124, 116, 0.28);
  box-shadow: 0 18px 40px rgba(33, 24, 19, 0.16);
  color: var(--accent);
  background: radial-gradient(circle at 30% 30%, rgb(255, 255, 255), transparent 45%), linear-gradient(135deg, rgb(255, 255, 255), rgba(220, 232, 227, 0.95));
}

.gallery-control:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(86, 124, 116, 0.15), 0 18px 40px rgba(33, 24, 19, 0.16);
}

.gallery-control:disabled {
  opacity: 0.5;
  color: rgba(30, 26, 24, 0.45);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.gallery-control-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-control-icon svg {
  width: 100%;
  height: 100%;
}

.gallery-carousel {
  display: grid;
  gap: 1rem;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1rem;
  will-change: transform;
  transition: transform 420ms ease;
}

.gallery-slide {
  min-width: 0;
  opacity: 0.52;
  transform: scale(0.94);
  transform-origin: center center;
  transition: opacity 320ms ease, transform 420ms ease, filter 320ms ease;
  filter: saturate(0.88);
}

.gallery-slide.is-selected {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(53, 43, 35, 0.08);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(23, 21, 19, 0.08)), linear-gradient(135deg, rgba(220, 232, 227, 0.8), rgba(255, 251, 247, 0.96));
}
@media (max-width: 640px) {
  .gallery-card {
    min-height: 360px !important;
  }
}

.gallery-card img,
.gallery-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
}

.gallery-card-large {
  min-height: 460px;
  background: radial-gradient(circle at top right, rgba(86, 124, 116, 0.2), transparent 32%), linear-gradient(135deg, rgba(255, 252, 248, 0.92), rgba(220, 232, 227, 0.7));
}

.gallery-card-large img {
  object-position: center 68%;
}

.gallery-card-soft {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 30%), linear-gradient(135deg, rgba(248, 239, 228, 0.95), rgba(220, 232, 227, 0.62));
}

.gallery-card-soft img {
  object-position: center center;
}

.gallery-card-detail {
  background: radial-gradient(circle at bottom right, rgba(184, 155, 115, 0.18), transparent 30%), linear-gradient(135deg, rgba(255, 251, 247, 0.98), rgba(241, 232, 221, 0.88));
}

.gallery-card-detail img {
  object-position: center 42%;
}

.gallery-card-portrait {
  background: radial-gradient(circle at top left, rgba(184, 155, 115, 0.16), transparent 28%), linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(245, 234, 226, 0.92));
}

.gallery-card-portrait img {
  object-position: center 20%;
}

.gallery-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.gallery-dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(53, 43, 35, 0.18);
  transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.gallery-dot:hover,
.gallery-dot:focus-visible {
  transform: translateY(-1px);
  background: rgba(53, 43, 35, 0.35);
}

.gallery-dot.is-active {
  width: 2rem;
  background: var(--accent);
}

@media (max-width: 699px) {
  .gallery-control-prev {
    left: 0.65rem;
  }
  .gallery-control-next {
    right: 0.65rem;
  }
}
.contact-card,
.info-card,
.feature-card,
.hero-card,
.split-panel,
.local-note,
.cta-band {
  position: relative;
}

[data-reveal] {
  --reveal-delay: 0ms;
  --reveal-distance: 32px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

[data-reveal=left] {
  transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0);
}

[data-reveal=right] {
  transform: translate3d(var(--reveal-distance), 0, 0);
}

[data-reveal=zoom] {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
.site-footer {
  padding: 2rem 0 7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(53, 43, 35, 0.12);
}

.mobile-cta {
  position: fixed;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 45;
  display: flex;
  gap: 0.75rem;
  padding: 0.7rem;
  border: 1px solid rgba(53, 43, 35, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(33, 24, 19, 0.16);
  backdrop-filter: blur(14px);
  background: rgba(255, 251, 247, 0.92);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-cta .button {
  flex: 1;
  min-height: 3rem;
  padding-inline: 0.9rem;
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  .gallery-card {
    min-height: 420px;
  }
  .gallery-card-large {
    min-height: 520px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .who-grid,
  .contact-grid,
  .local-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-band {
    grid-template-columns: 1.35fr auto;
  }
}
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .hero {
    padding: 3rem 0 4rem;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .section-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gallery-track {
    grid-auto-columns: calc((100% - 1rem) * 2 / 3);
  }
  .gallery-card-large {
    min-height: 560px;
  }
  .gallery-card-soft,
  .gallery-card-detail,
  .gallery-card-portrait {
    min-height: 420px;
  }
  .mobile-cta {
    display: none;
  }
  .site-footer {
    padding-bottom: 2.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .page-background-slide {
    transform: none;
  }
}
.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;
}
