:root {
  color-scheme: light;
  --sand: #f6efe7;
  --sand-light: #fdf9f4;
  --ink: #1f2521;
  --muted: #5e6b62;
  --accent: #f27a5a;
  --accent-dark: #d86144;
  --deep: #1c5f5a;
  --deep-dark: #164a46;
  --card: #ffffff;
  --border: #e7ded4;
  --shadow: 0 20px 40px rgba(31, 37, 33, 0.08);
  --radius: 22px;
  --radius-lg: 32px;
  --focus: #1c5f5a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff7ee 0%, #f6efe7 40%, #f7f3ed 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

main section[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 16px;
  background: var(--deep);
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 249, 244, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 1.2rem;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-desktop {
  display: flex;
  gap: 6px;
}

.lang-pill {
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #fff;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.lang-pill.is-active {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}

.lang-mobile {
  display: none;
}

.lang-mobile select {
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

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

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-copy h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(242, 122, 90, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--border);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: var(--deep);
  color: #fff;
}

.btn-dark:hover {
  background: var(--deep-dark);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.hero-media {
  position: relative;
}

.hero-stack {
  position: relative;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-picture {
  display: block;
  border-radius: 26px;
  overflow: hidden;
}

.hero-inset {
  position: absolute;
  right: 18px;
  bottom: -24px;
  width: min(40%, 220px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.hero-note {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--sand-light);
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(31, 37, 33, 0.08);
  display: grid;
  gap: 6px;
}

.hero-note strong {
  font-family: "Source Serif 4", serif;
  font-size: 1.05rem;
}

.section {
  padding: clamp(56px, 8vw, 76px) 0;
}

main .section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-head h2 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  margin: 0 0 12px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.steps-grid {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step-card h3 {
  margin-top: 0;
  font-family: "Source Serif 4", serif;
}

.stay-grid,
.service-grid {
  margin-top: 28px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stay-card,
.service-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.stay-media,
.service-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.stay-media picture,
.service-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.stay-media img,
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stay-body,
.service-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.stay-body h3,
.service-body h3 {
  margin: 0;
  font-family: "Source Serif 4", serif;
}

.stay-body ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.why-grid {
  display: grid;
  gap: 30px;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.why-list {
  padding-left: 18px;
  color: var(--muted);
}

.why-note {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: var(--shadow);
}

.why-note h3 {
  font-family: "Source Serif 4", serif;
  margin-top: 0;
}

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

.about-intro {
  margin: 18px 0 28px;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.about-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-block {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-block h3 {
  margin-top: 0;
  font-family: "Source Serif 4", serif;
}

.about-block p {
  color: var(--muted);
}

.about-why {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--sand-light);
}

.about-why h3 {
  font-family: "Source Serif 4", serif;
  margin-top: 0;
}

.about-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px 18px;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.realestate-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fce9dd, #f6efe7 60%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.realestate-card h2 {
  margin-top: 0;
  font-family: "Source Serif 4", serif;
}

.contact-grid {
  margin-top: 28px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  color: var(--deep);
  font-weight: 600;
}

.form-status.is-error {
  color: var(--accent-dark);
}

.form-status.is-success {
  color: var(--deep);
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-panel h3 {
  font-family: "Source Serif 4", serif;
  margin-top: 0;
}

.contact-panel-head p {
  color: var(--muted);
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 8px;
  font-size: 0.98rem;
}

.contact-meta {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.contact-meta-card {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--sand-light);
}

.contact-meta-card h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-meta-card p,
.contact-meta-card ul {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-meta-card ul {
  padding-left: 18px;
}

.contact-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff6ee;
  border: 1px solid #f0d3c3;
  font-size: 0.92rem;
}

.contact-chips,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--sand-light);
  font-size: 0.85rem;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  padding: 10px;
  background: rgba(253, 249, 244, 0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(31, 37, 33, 0.2);
  z-index: 60;
}

.mobile-cta .btn {
  width: auto;
  flex: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .btn,
  .text-link::after {
    transition: none;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .lang-desktop {
    display: none;
  }

  .lang-mobile {
    display: block;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-inset {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .mobile-cta {
    display: flex;
    width: min(92vw, 420px);
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .section {
    padding: 52px 0;
  }

  .contact-form,
  .contact-panel {
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea,
  .lang-mobile select {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }
}
