:root {
  --bg: #f6f8f3;
  --bg-deep: #dfe8de;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.55);
  --surface-strong: rgba(255, 255, 255, 0.72);
  --surface-outline: rgba(255, 255, 255, 0.4);
  --text: #233128;
  --muted: #586a5d;
  --accent: #6f8f72;
  --accent-deep: #516c56;
  --accent-soft: #d3e1d1;
  --line: rgba(80, 108, 86, 0.18);
  --shadow: 0 24px 80px rgba(74, 97, 79, 0.16);
  --shadow-soft: 0 16px 40px rgba(74, 97, 79, 0.1);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16.5px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(111, 143, 114, 0.2), transparent 0 28%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.85), transparent 0 32%),
    radial-gradient(circle at 80% 35%, rgba(211, 225, 209, 0.85), transparent 0 24%),
    linear-gradient(180deg, #fcfdfb 0%, #eff4ed 46%, #e4ece2 100%);
  line-height: 1.6;
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell.is-language-switching main,
.page-shell.is-language-switching footer,
.page-shell.is-language-switching .brand {
  animation: languageSlide 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand,
.main-nav a,
.lang-switcher,
.hero-copy,
.hero-card,
.metric,
.section-heading,
.manifesto-copy,
.experience-card,
.atmosphere-media,
.feature-list li,
.journey-step,
.contact-panel,
.footer-column {
  will-change: transform, opacity, filter;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: 6rem;
  left: -10rem;
  width: 42rem;
  height: 42rem;
  background: rgba(111, 143, 114, 0.28);
  animation: floatGlowA 14s ease-in-out infinite;
}

.page-shell::after {
  right: -12rem;
  bottom: 18rem;
  width: 40rem;
  height: 40rem;
  background: rgba(255, 255, 255, 0.95);
  animation: floatGlowB 16s ease-in-out infinite;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent-deep);
  color: var(--white);
  z-index: 100;
  transform: translateY(-220%);
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 248, 243, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-tag,
.section-kicker,
.eyebrow,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-tag,
.section-kicker,
.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  color: var(--accent-deep);
}

.brand-name,
h1,
h2,
h3,
.metric-value {
  font-family: "Fraunces", serif;
}

.brand-name {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 600;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switcher {
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-soft);
}

.lang-button {
  min-width: 3rem;
  padding: 0.55rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  transform: translateY(-1px);
}

.lang-button.is-active {
  background: var(--accent);
  color: var(--white);
}

.main-nav a {
  padding: 0.35rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.hero,
.section {
  padding: 5rem 0;
}

.hero {
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.hero::before {
  top: 2rem;
  right: 6%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(111, 143, 114, 0.34), rgba(111, 143, 114, 0));
  animation: floatGlowC 12s ease-in-out infinite;
}

.hero::after {
  left: 18%;
  bottom: 3rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  animation: floatGlowB 15s ease-in-out infinite;
}

.hero-layout,
.split-section,
.atmosphere-layout,
.hosting-grid,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.hero-layout,
.atmosphere-layout,
.contact-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.split-section,
.hosting-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hosting-grid-reverse > .hosting-copy {
  order: 2;
}

.hosting-grid-reverse > .hosting-steps {
  order: 1;
}

.glass-panel,
.hero-card,
.experience-card,
.step-item,
.atmosphere-visual {
  border: 1px solid var(--surface-outline);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.hero-card,
.experience-card,
.atmosphere-visual,
.gallery-card {
  border: 0;
}

.glass-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  margin-bottom: 1.25rem;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1rem;
  max-width: 12ch;
}

h3 {
  font-size: 1.72rem;
  margin-bottom: 0.8rem;
}

.lead,
.section-intro,
.manifesto-copy p,
.contact-copy p,
.atmosphere-copy p,
.hosting-copy p,
.experience-card p,
.step-item p,
.metric p {
  color: var(--muted);
}

.lead {
  max-width: 58ch;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.45);
  border-color: var(--line);
}

.button-full {
  width: 100%;
  margin-top: 1rem;
}

.hero-stage {
  position: relative;
  min-height: 42rem;
}

.hero-card {
  position: absolute;
  border-radius: 2rem;
  overflow: hidden;
  background: transparent;
}

.hero-card img,
.experience-image,
.atmosphere-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.72) contrast(0.9) brightness(0.78) sepia(0.08) hue-rotate(-6deg);
  transform: scale(1.06);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle at top right, rgba(111, 143, 114, 0.26), transparent 38%),
    linear-gradient(180deg, rgba(18, 28, 21, 0.12), rgba(10, 16, 12, 0.62));
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card-content,
.experience-copy,
.visual-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1rem 1.05rem;
  color: rgba(255, 255, 255, 0.96);
  border: 0;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(238, 245, 239, 0.22), rgba(228, 238, 230, 0.14));
  backdrop-filter: blur(26px) saturate(1.08);
  -webkit-backdrop-filter: blur(26px) saturate(1.08);
  box-shadow: 0 14px 34px rgba(7, 12, 9, 0.15);
  overflow: hidden;
}

.hero-card-large {
  left: 0;
  bottom: 0;
  width: 76%;
  min-height: 31rem;
}

.hero-card-large .hero-card-content {
  right: auto;
  width: min(23rem, calc(100% - 5.5rem));
  max-width: min(23rem, calc(100% - 5.5rem));
}

.hero-card-large .card-label,
.hero-card-large strong,
.hero-card-large p {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

.hero-card-small {
  width: 46%;
  min-height: 12.8rem;
}

.hero-card-top {
  top: 1.5rem;
  right: 0;
}

.hero-card-bottom {
  right: 1.5rem;
  bottom: 2.5rem;
}

.card-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card strong {
  display: block;
  margin-bottom: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.hero-card p {
  max-width: 28ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-card-large img {
  object-position: center 62%;
}

.hero-card-top img {
  object-position: center 48%;
}

.hero-card-bottom img {
  object-position: center 28%;
}

.hero-card-small .hero-card-content {
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.8rem 0.85rem 0.9rem;
  gap: 0.3rem;
}

.hero-card-small .card-label {
  margin-bottom: 0.2rem;
  font-size: 0.66rem;
}

.hero-card-small strong {
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.08;
}

.hero-card-small p {
  max-width: 24ch;
  font-size: 0.82rem;
  line-height: 1.32;
}

.metrics-section {
  padding-top: 0;
}

.metrics-grid,
.experience-grid {
  display: grid;
  gap: 1.25rem;
}

.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric {
  min-height: 100%;
}

.metric-value {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 2rem;
  color: var(--accent);
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0.7rem;
  border-radius: 999px;
  background: rgba(111, 143, 114, 0.1);
}

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

.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading-inline-reverse {
  flex-direction: row-reverse;
}

.section-heading-inline-reverse > *:first-child {
  text-align: right;
}

.section-intro {
  max-width: 38ch;
}

.section-heading-inline-reverse .section-intro {
  text-align: left;
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 22rem;
  padding: 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.featured-experience {
  transform: translateY(1.25rem);
  background: rgba(255, 255, 255, 0.08);
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(22, 34, 26, 0.1) 42%, rgba(12, 18, 14, 0.54) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 28%);
  z-index: 1;
}

.experience-card > * {
  position: relative;
  z-index: 1;
}

.experience-media {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  height: 100%;
}

.experience-image {
  z-index: 0;
  transform: scale(1.03);
}

.experience-copy {
  z-index: 2;
  width: auto;
  max-width: min(calc(100% - 2rem), 20rem);
}

.experience-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(111, 143, 114, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-card h3,
.experience-card p {
  color: rgba(255, 255, 255, 0.96);
}

.experience-card h3 {
  margin-bottom: 0.55rem;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
}

.experience-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.88);
}

.experience-card:nth-child(1) .experience-image {
  object-position: center 36%;
}

.experience-card:nth-child(2) .experience-image {
  object-position: center 34%;
}

.experience-card:nth-child(3) .experience-image {
  object-position: center 30%;
}

.atmosphere-stack {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.atmosphere-layout-reverse > .atmosphere-stack {
  order: 2;
}

.atmosphere-layout-reverse > .atmosphere-copy {
  order: 1;
}

.atmosphere-visual {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 18rem;
  padding: 0;
  border-radius: var(--radius-lg);
}

.atmosphere-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(13, 19, 15, 0.52)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 28%);
  z-index: 1;
}

.atmosphere-media {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  height: 100%;
}

.atmosphere-visual span,
.atmosphere-visual div {
  position: relative;
  z-index: 2;
}

.visual-caption {
  left: 0.85rem;
  right: auto;
  bottom: 0.85rem;
  display: block;
  width: auto;
  min-width: 0;
  max-width: min(calc(100% - 1.7rem), 18rem);
  padding: 0.8rem 0.9rem 0.85rem;
  gap: 0.2rem;
  font-family: "Fraunces", serif;
  font-size: 0.98rem;
  line-height: 1.18;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.visual-tall img {
  object-position: center 34%;
}

.visual-wide img {
  object-position: center 42%;
}

.visual-wide .visual-caption {
  max-width: min(calc(100% - 1.7rem), 20rem);
}

.atmosphere-media > .visual-caption {
  left: 0.85rem;
  right: auto;
  bottom: 0.85rem;
}

.visual-tall {
  min-height: 29rem;
}

.visual-wide {
  min-height: 23rem;
  margin-top: 4.8rem;
}

@keyframes floatGlowA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(3rem, 2rem, 0) scale(1.08);
  }
}

@keyframes languageSlide {
  0% {
    opacity: 0.12;
    transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floatGlowB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-2.5rem, 1.5rem, 0) scale(1.06);
  }
}

@keyframes floatGlowC {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.5rem, -2rem, 0) scale(1.12);
  }
}

.feature-list {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.55rem;
}

.gallery-section {
  padding-top: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  margin: 0;
  border-radius: var(--radius-lg);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(14, 20, 16, 0.56)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 28%);
  z-index: 1;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.gallery-card .visual-caption {
  position: absolute;
  z-index: 2;
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 41.2rem;
}

.gallery-card-wide {
  grid-column: 1 / -1;
  min-height: 24rem;
}

.gallery-card:nth-child(1) img {
  object-position: center 44%;
}

.gallery-card:nth-child(2) img {
  object-position: center 36%;
}

.gallery-card:nth-child(3) img {
  object-position: center 48%;
}

.gallery-card:nth-child(4) img {
  object-position: center 42%;
}

.gallery-carousel-block {
  margin-top: 1.5rem;
}

.gallery-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.1rem;
}

.gallery-carousel-head h3 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
}

.gallery-carousel-controls {
  display: inline-flex;
  gap: 0.75rem;
}

.gallery-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  border: 1px solid rgba(80, 108, 86, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.gallery-carousel-button:hover,
.gallery-carousel-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(111, 143, 114, 0.22);
}

.gallery-carousel-button svg {
  width: 1.1rem;
  height: 1.1rem;
}

.gallery-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(111, 143, 114, 0.35) transparent;
}

.gallery-carousel::-webkit-scrollbar {
  height: 0.55rem;
}

.gallery-carousel::-webkit-scrollbar-thumb {
  background: rgba(111, 143, 114, 0.35);
  border-radius: 999px;
}

.carousel-slide {
  flex: 0 0 22rem;
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  margin: 0;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(13, 19, 15, 0.4)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%);
  z-index: 1;
}

.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

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

.hosting-section {
  padding-top: 1rem;
}

.hosting-steps {
  display: grid;
  gap: 1rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(111, 143, 114, 0.14);
  color: var(--accent-deep);
  font-weight: 700;
}

.contact-layout {
  align-items: stretch;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.contact-map-card,
.contact-card {
  flex: 1;
}

.contact-map-card {
  display: flex;
  flex-direction: column;
}

.contact-card p {
  margin-bottom: 0.75rem;
}

.contact-card strong {
  display: inline-block;
  min-width: 7rem;
}

.contact-map-title {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
}

.contact-map-details {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.contact-map-details p {
  margin: 0;
}

.contact-map-details strong {
  display: inline-block;
  min-width: 6rem;
}

.contact-map-details p:last-child {
  display: grid;
  grid-template-columns: 6rem 1fr;
  align-items: center;
  column-gap: 0.8rem;
}

.contact-map-details p:last-child strong {
  min-width: 0;
}

.contact-address {
  display: block;
  max-width: 22ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  text-align: left;
}

.contact-map-copy {
  margin-bottom: 1rem;
}

.contact-map-frame {
  flex: 1;
  overflow: hidden;
  min-height: 18rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
  filter: saturate(0.92) contrast(0.98);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.35rem;
}

.contact-form-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
}

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

.contact-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.contact-field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(80, 108, 86, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.contact-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(111, 143, 114, 0.2);
  border-color: rgba(111, 143, 114, 0.42);
}

.contact-field-full {
  grid-column: 1 / -1;
}

.interest-links {
  display: grid;
  gap: 0.65rem;
  margin: 1.3rem 0 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(80, 108, 86, 0.14);
}

.interest-links-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.interest-links a {
  color: inherit;
}

.platform-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.platform-link:hover,
.platform-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(111, 143, 114, 0.22);
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.platform-logo svg {
  width: 1.5rem;
  height: 1.5rem;
}

.platform-logo-tripadvisor {
  color: #34e0a1;
}

.platform-logo-facebook {
  color: #1877f2;
}

.platform-copy {
  display: grid;
  gap: 0.15rem;
}

.platform-copy strong {
  min-width: 0;
  color: var(--text);
  font-size: 0.98rem;
}

.platform-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.platform-link-footer {
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.3);
}

.platform-link-footer .platform-logo {
  width: 2.6rem;
  height: 2.6rem;
}

.platform-link-footer .platform-logo svg {
  width: 1.35rem;
  height: 1.35rem;
}

.site-footer {
  padding: 3rem 0 2.25rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(180deg, rgba(246, 248, 243, 0.45), rgba(230, 238, 229, 0.7));
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.footer-inner {
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 22rem;
}

.footer-column a,
.footer-column p {
  margin: 0;
}

.footer-address {
  white-space: pre-line;
}

.footer-title {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero-layout,
  .atmosphere-layout,
  .split-section,
  .hosting-grid,
  .contact-layout,
  .metrics-grid,
  .experience-grid,
  .atmosphere-stack,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-inline,
  .header-inner,
  .header-actions,
  .footer-inner,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .featured-experience {
    transform: none;
  }

  .visual-wide {
    margin-top: 0;
  }

  .gallery-card-large,
  .gallery-card-wide {
    min-height: 24rem;
  }

  .gallery-carousel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-carousel {
    gap: 0.9rem;
  }

  .carousel-slide {
    flex-basis: 20rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding: 4rem 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  h2 {
    max-width: 100%;
  }

  .glass-panel,
  .step-item {
    padding: 1.4rem;
  }

  .experience-card {
    min-height: 20rem;
    padding: 0;
  }

  .experience-media {
    min-height: 20rem;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 13rem;
  }

  .hero-card-content {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.9rem 0.95rem 1rem;
  }

  .hero-card-large {
    min-height: 20rem;
  }

  .hero-card strong {
    font-size: 1.15rem;
  }

  .hero-card p,
  .experience-card p {
    font-size: 0.9rem;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide {
    min-height: 18rem;
  }

  .gallery-carousel {
    gap: 0.8rem;
  }

  .carousel-slide {
    flex-basis: 78%;
    min-height: 25rem;
  }

  .visual-caption {
    left: 0.7rem;
    right: auto;
    bottom: 0.7rem;
    min-width: 0;
    max-width: calc(100% - 1.4rem);
    padding: 0.72rem 0.8rem 0.78rem;
    font-size: 0.92rem;
  }

  .experience-copy,
  .visual-caption {
    left: 0.8rem;
    bottom: 0.8rem;
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .experience-copy {
    right: 0.8rem;
    max-width: calc(100% - 1.6rem);
  }

  .visual-caption {
    right: auto;
    max-width: min(calc(100% - 1.6rem), 16rem);
  }

  .atmosphere-media > .visual-caption {
    left: 0.8rem;
    right: auto;
    bottom: 0.8rem;
    max-width: min(calc(100% - 1.6rem), 16rem);
  }

  .hero-card-small .hero-card-content {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    max-width: calc(100% - 1.3rem);
  }

  .hero-card-small p {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .experience-copy {
    gap: 0.3rem;
  }

  .experience-card h3 {
    font-size: 1.35rem;
  }

  .experience-card p,
  .visual-caption {
    line-height: 1.3;
  }

  .main-nav {
    gap: 0.8rem 1rem;
  }
}
