:root {
  --ink: #171717;
  --muted: #69615d;
  --paper: #fbfaf8;
  --soft: #eee7e1;
  --line: #ded6cf;
  --rose: #b85d68;
  --green: #4d6b57;
  --gold: #c59b50;
  --white: #ffffff;
  --shadow: 0 24px 52px rgba(23, 23, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid rgba(222, 214, 207, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  font-weight: 900;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--rose);
}

.nav-action {
  color: var(--rose);
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  min-height: calc(100vh - 67px);
  background: var(--soft);
}

.hero-image {
  min-height: 520px;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 88px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.hero-copy p:not(.eyebrow),
.section p:not(.eyebrow),
.booking p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

.dark {
  background: var(--ink);
  color: var(--white);
}

.light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-row div {
  padding: 24px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 24px;
}

.trust-row span {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid span {
  color: var(--gold);
  font-weight: 900;
}

.service-grid strong {
  color: var(--green);
}

.work {
  background: var(--ink);
  color: var(--white);
}

.work .section-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.work-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.95fr;
  gap: 16px;
}

.work-grid img {
  height: clamp(260px, 36vw, 500px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.team-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-card img {
  height: 360px;
  object-fit: cover;
}

.team-card div {
  padding: 22px;
}

.booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.booking .eyebrow {
  color: #ffd58b;
}

.booking p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 920px) {
  .hero,
  .trust-row,
  .service-grid,
  .work-grid,
  .team {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 380px;
  }

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