:root {
  --ink: #18212b;
  --muted: #627080;
  --paper: #fbfaf7;
  --cream: #f7efe4;
  --sage: #dfe9d6;
  --clay: #b96f45;
  --blue: #3c5971;
  --green: #3f6749;
  --warm: #efcfaa;
  --white: #ffffff;
  --line: rgba(24, 33, 43, 0.14);
  --shadow: 0 20px 60px rgba(24, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 8px 30px rgba(24, 33, 43, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.header-actions,
.desktop-nav,
.language-toggle {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background-image: url("assets/logo.png");
  background-position: center 30%;
  background-size: 112px 112px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.site-header.scrolled .brand-logo {
  border-color: rgba(24, 33, 43, 0.16);
  box-shadow: 0 8px 18px rgba(24, 33, 43, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.desktop-nav {
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.86;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-actions {
  gap: 14px;
}

.language-toggle {
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.lang-button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

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

.site-header.scrolled .lang-button.active {
  color: var(--white);
  background: var(--ink);
}

.icon-link {
  white-space: nowrap;
  font-weight: 800;
}

.hero {
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  padding: 150px clamp(20px, 6vw, 86px) 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(48, 36, 27, 0.82), rgba(48, 36, 27, 0.46) 48%, rgba(48, 36, 27, 0.12)),
    url("assets/home-hero.jpg") center/cover;
}

.hero-content {
  width: min(760px, 100%);
}

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

.hero .eyebrow {
  color: #f3c3a5;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6.2vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.section,
.services-section,
.contact-section,
.site-footer {
  display: flex;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 850;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-item {
  min-height: 158px;
  padding: 34px clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.intro-item span,
.process-list span {
  color: var(--clay);
  font-weight: 900;
}

.intro-item strong,
.process-list strong {
  display: block;
  margin: 8px 0;
  font-size: 1.05rem;
}

.intro-item p,
.process-list p,
.area-grid p,
.service-panel p,
.section-text p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.section {
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 86px);
}

.section-text,
.portrait-panel,
.service-panel,
.contact-copy,
.contact-form {
  flex: 1;
}

.portrait-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-panel img {
  aspect-ratio: 4 / 4.6;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.quote-strip {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.quote-strip strong,
.quote-strip span {
  display: block;
}

.quote-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.services-section {
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.service-panel {
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(44px, 7vw, 86px);
  background: var(--sage);
}

.service-panel.warm {
  background: var(--cream);
}

.text-link {
  width: fit-content;
  border-bottom: 2px solid currentColor;
  color: var(--blue);
  font-weight: 900;
}

.area-section,
.process-section {
  display: block;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

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

.area-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.area-grid img {
  aspect-ratio: 1.35;
  object-fit: cover;
}

.area-grid h3,
.area-grid p {
  padding-right: 22px;
  padding-left: 22px;
}

.area-grid h3 {
  padding-top: 22px;
}

.area-grid p {
  padding-bottom: 24px;
}

.process-section {
  background: var(--blue);
  color: var(--white);
}

.process-section .eyebrow {
  color: #f1b991;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.process-list div {
  min-height: 210px;
  padding: 30px;
  background: var(--blue);
}

.process-list p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  gap: clamp(34px, 7vw, 90px);
  align-items: flex-start;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 86px);
  background: linear-gradient(135deg, var(--cream), #fff8ef);
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

label span {
  display: block;
  margin-bottom: 7px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 33, 43, 0.22);
  border-radius: 6px;
  padding: 14px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-honeypot {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: -2px 0 0;
  font-weight: 800;
}

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

.form-status.error {
  color: #9f2f22;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.form-note a {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal {
  max-width: 620px;
  font-size: 0.86rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: min(220px, 100%);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.office-address {
  display: grid;
  gap: 4px;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 0.92rem;
}

.office-address strong {
  color: var(--white);
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .desktop-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 88vh;
    padding-top: 190px;
  }

  .intro-band,
  .area-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .section,
  .services-section,
  .contact-section,
  .site-footer {
    flex-direction: column;
  }

  .service-panel {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px 14px;
    background: linear-gradient(180deg, rgba(24, 33, 43, 0.76), rgba(24, 33, 43, 0.26));
    backdrop-filter: blur(10px);
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    background-size: 94px 94px;
  }

  .brand small,
  .icon-link {
    display: none;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-button {
    min-width: 38px;
    min-height: 32px;
    font-size: 0.78rem;
  }

  .desktop-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    font-size: 0.76rem;
  }

  .desktop-nav a {
    min-height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0 6px;
    background: rgba(24, 33, 43, 0.24);
    text-align: center;
  }

  .hero {
    min-height: 88vh;
    padding: 166px 18px 44px;
    background-position: 58% center;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .intro-item,
  .section,
  .service-panel,
  .contact-section,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .quote-strip {
    position: static;
    border-radius: 0;
  }

  .portrait-panel img {
    aspect-ratio: 4 / 4.35;
  }

  .footer-brand,
  .office-address,
  .legal {
    max-width: none;
  }

  .footer-logo {
    width: min(190px, 78vw);
  }

  .site-footer {
    gap: 22px;
  }
}
