:root {
  --cream: #f7efe7;
  --porcelain: #fffaf6;
  --blush: #e8a6ad;
  --rose: #be6472;
  --maroon: #681d2a;
  --wine: #3b1119;
  --gold: #b88b3e;
  --sage: #7d8b74;
  --ink: #241a1d;
  --muted: #6f5a60;
  --line: rgba(104, 29, 42, 0.16);
  --shadow: 0 24px 60px rgba(59, 17, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.88);
  backdrop-filter: blur(18px);
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf7;
}

.lang-button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.lang-button.active {
  background: var(--maroon);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(184, 139, 62, 0.5);
  border-radius: 50%;
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--maroon);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  min-height: 760px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: clamp(42px, 8vw, 110px) clamp(20px, 5vw, 80px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6.6rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 14px 30px rgba(104, 29, 42, 0.22);
}

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

.hero-media {
  position: relative;
  align-self: center;
  min-height: 620px;
  max-height: 760px;
  margin: clamp(28px, 4vw, 58px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 58px) 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 250, 246, 0.12), rgba(255, 250, 246, 0));
  pointer-events: none;
}

.hero-media img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 52% 42%;
}

.section-pad {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 80px);
}

.intro,
.privacy,
.story {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.intro p:not(.eyebrow),
.privacy p:not(.eyebrow),
.story-copy p,
.method-copy p,
.apply-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.story {
  background: #fffaf7;
  border-top: 1px solid var(--line);
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p {
  margin-bottom: 0;
}

.services {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: 0 10px 30px rgba(59, 17, 25, 0.06);
}

.service-card.featured {
  background: var(--maroon);
  color: #fff;
}

.service-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.service-card.featured h3,
.service-card.featured p {
  color: #fff;
}

.method {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background: linear-gradient(180deg, var(--porcelain), #f9f3ed);
}

.method-copy {
  position: sticky;
  top: 118px;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.steps div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.steps strong {
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy {
  background: var(--sage);
  color: #fff;
}

.privacy .eyebrow,
.privacy h2,
.privacy p {
  color: #fff;
}

.apply {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: var(--porcelain);
}

.apply-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--wine);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(104, 29, 42, 0.22);
  border-radius: 8px;
  background: #fffaf7;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 139, 62, 0.26);
  border-color: var(--gold);
}

.apply-form .button {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 64px);
  background: var(--wine);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  font-weight: 800;
}

.disclaimer {
  padding: 22px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: #fffaf7;
}

.disclaimer p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .hero,
  .intro,
  .story,
  .privacy,
  .method,
  .apply {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 36px;
  }

  .hero-media {
    min-height: 440px;
    margin: 0;
    border-radius: 0;
  }

  .hero-media img {
    min-height: 440px;
    object-position: 50% 34%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card span {
    margin-bottom: 28px;
  }

  .method-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .language-switcher {
    width: 100%;
  }

  .lang-button {
    flex: 1;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .steps div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
  }
}
