:root {
  --navy: #071d3b;
  --navy-soft: #102d50;
  --ivory: #f6f2e9;
  --paper: #fcfaf5;
  --white: #fffefa;
  --gold: #b48a47;
  --gold-light: #dac39a;
  --teal: #087c78;
  --ink: #101a2b;
  --muted: #5f615e;
  --line: rgba(180, 138, 71, 0.38);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Noto Sans Thai", Arial, sans-serif;
  --shadow: 0 18px 45px rgba(29, 38, 50, 0.09);
  --max: 1440px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), transparent 42%),
    radial-gradient(circle at 20% 20%, rgba(180, 138, 71, 0.055), transparent 28%),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.section-shell {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 84px;
  border-bottom: 1px solid rgba(180, 138, 71, 0.2);
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(252, 250, 245, 0.98);
  box-shadow: 0 8px 24px rgba(7, 29, 59, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(290px, 1fr);
  align-items: center;
  width: min(calc(100% - 64px), var(--max));
  height: 100%;
  margin-inline: auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  color: var(--navy);
}

.brand-mark {
  position: relative;
  width: 88px;
  height: 55px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  position: absolute;
  top: -19px;
  left: 50%;
  width: 100px;
  max-width: none;
  transform: translateX(-50%);
}

.brand-divider {
  width: 1px;
  height: 36px;
  margin: 0 17px;
  background: var(--gold);
}

.brand-name {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3vw, 55px);
}

.site-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: #1b2839;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}

.language-switch {
  display: flex;
  align-items: center;
  color: rgba(7, 29, 59, 0.45);
  font-size: 11px;
}

.language-button {
  border: 0;
  padding: 6px;
  background: transparent;
  color: rgba(7, 29, 59, 0.48);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}

.language-button.is-active {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 29, 59, 0.2);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: min(710px, calc(100vh - 45px));
  overflow: hidden;
  isolation: isolate;
  background: #e8e2d7;
}

.hero-photo,
.hero-fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  z-index: -3;
  object-fit: cover;
  object-position: 69% center;
}

.hero-fade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(249, 247, 241, 1) 0%, rgba(249, 247, 241, 0.98) 28%, rgba(249, 247, 241, 0.82) 42%, rgba(249, 247, 241, 0.12) 66%, transparent 82%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 60%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(249, 247, 241, 0.23));
  content: "";
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 52px 68px;
}

.hero-copy {
  width: min(49%, 680px);
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(58px, 5.2vw, 84px);
  font-weight: 500;
  line-height: 0.86;
  text-transform: uppercase;
}

.gold-rule {
  width: 66px;
  height: 2px;
  margin: 28px 0 22px;
  background: var(--gold);
}

.gold-rule.centered {
  margin: 18px auto 0;
}

.motto {
  margin: 0 0 19px;
  color: #98743c;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: pre-line;
}

.intro {
  max-width: 575px;
  margin: 0;
  color: #34383e;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  margin-top: 28px;
  gap: 18px;
}

.button {
  min-width: 188px;
  padding: 0 24px;
}

.button-primary {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.button-primary:hover {
  background: var(--navy-soft);
  box-shadow: 0 12px 25px rgba(7, 29, 59, 0.15);
}

.button-secondary {
  border-color: rgba(180, 138, 71, 0.65);
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
}

.button-secondary:hover {
  background: #fff;
}

.hero-emblem {
  position: absolute;
  top: 22%;
  right: 14.5%;
  width: 142px;
  height: 78px;
  overflow: hidden;
  filter: drop-shadow(0 8px 12px rgba(7, 29, 59, 0.08));
}

.hero-emblem img {
  position: absolute;
  top: -28px;
  left: 0;
  width: 142px;
  max-width: none;
}

.challenge {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 27px 80px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 254, 250, 0.93), rgba(255, 254, 250, 0.93)),
    linear-gradient(90deg, rgba(180, 138, 71, 0.1), transparent);
  box-shadow: var(--shadow), inset 0 0 0 5px rgba(255, 255, 255, 0.62);
  text-align: center;
}

.challenge::before,
.challenge::after {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 120px;
  background:
    linear-gradient(120deg, transparent 48%, rgba(180, 138, 71, 0.22) 49%, transparent 51%) 0 0 / 20px 32px;
  content: "";
  opacity: 0.65;
  transform: translateY(-50%);
}

.challenge::before {
  left: 22px;
}

.challenge::after {
  right: 22px;
  transform: translateY(-50%) scaleX(-1);
}

.section-kicker {
  margin: 0 0 5px;
  color: #9b773d;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.challenge h2,
.section-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

#challenge-title {
  white-space: pre-line;
}

.challenge-text {
  margin: 8px 0 0;
  color: #34383e;
  font-size: 15px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  margin: 11px auto 8px;
  gap: 10px;
}

.ornament span {
  width: 72px;
  height: 1px;
  background: var(--gold-light);
}

.ornament i {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.challenge strong {
  color: #30384a;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.services {
  padding: 88px 0 94px;
}

.section-intro {
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  gap: 20px;
}

.service-card {
  position: relative;
  --card-pad-x: 28px;
  min-height: 540px;
  padding: 0 var(--card-pad-x) 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.78);
  box-shadow: 0 12px 28px rgba(23, 30, 39, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(23, 30, 39, 0.09);
}

.service-media {
  height: clamp(154px, 13vw, 188px);
  margin: 0 calc(var(--card-pad-x) * -1) 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(180, 138, 71, 0.28);
  border-radius: 8px 8px 0 0;
  background: #ede6da;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:nth-child(1) .service-media img {
  object-position: center 28%;
}

.service-card:nth-child(3) .service-media img {
  object-position: center 43%;
}

.service-card:nth-child(4) .service-media img {
  object-position: center 62%;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  display: grid;
  width: 61px;
  height: 61px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  place-items: center;
  transform: translateX(-50%);
}

.service-icon svg,
.process-icon svg {
  width: 32px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.service-card h3 {
  min-height: 53px;
  margin: 0 0 9px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card p {
  min-height: 83px;
  margin: 0 0 17px;
  color: #454a4d;
  font-size: 13px;
  line-height: 1.65;
}

.service-card ul {
  margin: 0;
  padding: 15px 0 0 18px;
  border-top: 1px solid rgba(180, 138, 71, 0.24);
  color: #33383d;
  font-size: 13px;
  line-height: 1.8;
}

.service-card li::marker {
  color: var(--gold);
}

.process {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  isolation: isolate;
  background: #eee9e0;
}

.process-photo,
.process-fade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.process-photo {
  object-fit: cover;
  object-position: left center;
}

.process-fade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(247, 243, 235, 0.06) 0%, rgba(247, 243, 235, 0.5) 38%, rgba(247, 243, 235, 0.98) 57%, var(--ivory) 100%);
}

.process-inner {
  width: min(calc(100% - 64px), 980px);
  margin-right: max(32px, calc((100vw - var(--max)) / 2));
  margin-left: auto;
  padding: 52px 0 45px;
  text-align: center;
}

.process-inner > h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 47px);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.process-inner > h2 i {
  margin: 0 22px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 29px;
  gap: 14px;
}

.process-grid article {
  min-width: 0;
  overflow: hidden;
  padding: 14px 18px 20px;
  border: 1px solid rgba(180, 138, 71, 0.32);
  border-radius: 6px;
  background: rgba(255, 254, 250, 0.74);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(7, 29, 59, 0.06);
}

.process-media {
  height: 125px;
  margin: -14px -18px 16px;
  overflow: hidden;
  border-bottom: 1px solid rgba(180, 138, 71, 0.28);
  background: #eee7dc;
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.62);
  place-items: center;
}

.process-grid h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.process-grid strong {
  display: block;
  margin: -3px 0 4px;
  color: #343b45;
  font-size: 13px;
  font-weight: 500;
}

.process-grid p {
  margin: 0 auto;
  color: #50535a;
  font-size: 11px;
  line-height: 1.6;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, #071a35 0%, #092448 58%, #06152c 100%);
  color: #fff;
}

.contact-cta::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 300px;
  border-right: 1px solid rgba(218, 195, 154, 0.18);
  background:
    linear-gradient(45deg, transparent 47%, rgba(218, 195, 154, 0.15) 49%, transparent 51%) 30px 25px / 44px 44px;
  content: "";
  opacity: 0.65;
}

.contact-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 176px;
}

.contact-cta h2 {
  max-width: 760px;
  margin: 0 0 8px;
  color: #f0dcc0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-title-tail {
  font-size: clamp(28px, 2.83vw, 41px);
}

.contact-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.site-footer {
  background: var(--paper);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 84px;
}

.contact-links > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 15px 22px;
  gap: 13px;
}

.contact-links > a + a {
  border-left: 1px solid rgba(180, 138, 71, 0.3);
}

.contact-links img,
.mail-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
}

.mail-icon {
  display: grid;
  border: 1px solid rgba(7, 29, 59, 0.5);
  border-radius: 50%;
  place-items: center;
}

.mail-icon svg {
  width: 24px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-links span:not(.mail-icon) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-links strong {
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
}

.contact-links small {
  overflow: hidden;
  color: #41454b;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copyright {
  min-height: 35px;
  padding: 9px 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  text-align: center;
}

.cookie-consent {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(calc(100% - 48px), 720px);
  padding: 18px;
  border: 1px solid rgba(218, 195, 154, 0.52);
  border-radius: 8px;
  background: rgba(7, 29, 59, 0.96);
  box-shadow: 0 22px 48px rgba(7, 29, 59, 0.28);
  color: #fff;
  gap: 18px;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 3px;
  color: #f2dcc0;
  font-size: 15px;
  font-weight: 600;
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-button {
  min-width: 96px;
  min-height: 40px;
  border: 1px solid rgba(218, 195, 154, 0.6);
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.cookie-button:hover {
  transform: translateY(-1px);
}

.cookie-button-muted {
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
}

.cookie-button-primary {
  background: #f0dcc0;
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 220px 1fr auto;
    gap: 20px;
  }

  .brand-mark {
    width: 72px;
  }

  .brand-divider {
    margin-inline: 12px;
  }

  .site-nav {
    gap: 24px;
  }

  .hero-copy {
    width: 54%;
  }

  .hero-emblem {
    right: 10%;
  }

  .service-card {
    --card-pad-x: 22px;
    padding-inline: var(--card-pad-x);
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 72px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    background: rgba(252, 250, 245, 0.72);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 35px rgba(7, 29, 59, 0.12);
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: max-height 250ms ease, opacity 180ms ease, padding 250ms ease;
  }

  .nav-open .site-nav {
    max-height: calc(100vh - 72px);
    padding-block: 24px 28px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 20px;
    border: 1px solid rgba(180, 138, 71, 0.48);
    border-radius: 6px;
    background: rgba(255, 254, 250, 0.86);
    box-shadow: 0 8px 20px rgba(7, 29, 59, 0.055);
    color: var(--navy);
    font-size: 14px;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .site-nav a::after {
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--gold);
    content: "→";
    font-size: 19px;
    transform: none;
  }

  .site-nav a:hover {
    background: #fff;
    box-shadow: 0 12px 24px rgba(7, 29, 59, 0.09);
    transform: translateY(-2px);
  }

  .site-nav a.is-current {
    border-color: var(--navy);
    background: var(--navy);
    box-shadow: 0 12px 24px rgba(7, 29, 59, 0.16);
    color: #fff;
  }

  .site-nav a.is-current::after {
    color: var(--gold-light);
  }

  .nav-toggle {
    display: block;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.2px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.2px) rotate(-45deg);
  }

  .hero {
    min-height: 690px;
  }

  .hero-copy {
    width: 62%;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 7vw, 72px);
  }

  .hero-emblem {
    top: 20%;
    right: 7%;
    width: 116px;
    height: 66px;
  }

  .hero-emblem img {
    top: -23px;
    width: 116px;
  }

  .challenge {
    padding-inline: 60px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 54px;
  }

  .service-card {
    min-height: 365px;
  }

  .service-card p {
    min-height: 62px;
  }

  .process-inner {
    width: min(calc(100% - 64px), 760px);
  }

  .process-fade {
    background: linear-gradient(90deg, rgba(247, 243, 235, 0.25) 0%, rgba(247, 243, 235, 0.85) 38%, var(--ivory) 68%);
  }

  .process-grid article {
    padding-inline: 18px;
  }

}

@media (max-width: 700px) {
  .section-shell,
  .header-inner {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-header {
    height: 66px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-mark {
    width: 64px;
    height: 46px;
  }

  .brand-mark img {
    top: -15px;
    width: 80px;
  }

  .brand-divider {
    height: 30px;
    margin-inline: 9px;
  }

  .brand-name {
    font-size: 15px;
  }

  .language-switch {
    font-size: 16px;
  }

  .language-button {
    padding: 5px;
    font-size: 16px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    min-height: 665px;
  }

  .hero-photo {
    object-position: 60% center;
  }

  .hero-fade {
    background:
      linear-gradient(180deg, rgba(249, 247, 241, 0.16) 0%, rgba(249, 247, 241, 0.58) 34%, rgba(249, 247, 241, 0.98) 67%, rgba(249, 247, 241, 1) 100%),
      linear-gradient(90deg, rgba(249, 247, 241, 0.68) 0%, transparent 80%);
  }

  .hero-inner {
    align-items: flex-end;
    padding-block: 220px 45px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 13.4vw, 58px);
    line-height: 0.9;
  }

  .gold-rule {
    margin-block: 22px 17px;
  }

  .motto {
    margin-bottom: 13px;
    font-size: 22px;
  }

  .intro {
    font-size: 13px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
    gap: 10px;
  }

  .button {
    min-width: 0;
    min-height: 48px;
    padding-inline: 14px;
    gap: 12px;
    font-size: 12px;
  }

  .hero-emblem {
    top: 48px;
    right: 38px;
    width: 104px;
    height: 60px;
  }

  .hero-emblem img {
    top: -20px;
    width: 104px;
  }

  .challenge {
    width: min(calc(100% - 28px), var(--max));
    margin-top: -12px;
    padding: 26px 25px 24px;
  }

  .challenge::before,
  .challenge::after {
    display: none;
  }

  .challenge h2 {
    font-size: 28px;
  }

  .section-intro h2 {
    font-size: 34px;
  }

  .challenge-text {
    font-size: 15px;
  }

  .challenge strong {
    display: block;
    font-size: 18px;
    line-height: 1.35;
  }

  .services {
    padding-block: 70px 74px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 56px;
    gap: 52px;
  }

  .service-card {
    --card-pad-x: 26px;
    min-height: auto;
    padding: 0 var(--card-pad-x) 26px;
  }

  .service-media {
    height: 210px;
    margin-bottom: 25px;
  }

  .service-card h3,
  .service-card p {
    min-height: 0;
  }

  .service-card p {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .service-card ul {
    font-size: 14px;
  }

  .process {
    min-height: 680px;
  }

  .process-photo {
    height: 265px;
    object-position: 20% center;
  }

  .process-fade {
    background: linear-gradient(180deg, rgba(247, 243, 235, 0.02) 0%, rgba(247, 243, 235, 0.38) 28%, var(--ivory) 43%, var(--ivory) 100%);
  }

  .process-inner {
    width: min(calc(100% - 36px), var(--max));
    margin: 0 auto;
    padding: 255px 0 48px;
  }

  .process-inner > h2 {
    flex-wrap: wrap;
    font-size: 30px;
  }

  .process-inner > h2 i {
    margin-inline: 10px;
    font-size: 19px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
    gap: 22px;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: 56px 1fr;
    padding: 16px;
    text-align: left;
    column-gap: 16px;
  }

  .process-media {
    grid-column: 1 / -1;
    height: 172px;
    margin: -16px -16px 16px;
  }

  .process-icon {
    grid-row: 2 / span 3;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .process-grid h3,
  .process-grid strong,
  .process-grid p {
    grid-column: 2;
  }

  .process-grid h3 {
    font-size: 20px;
  }

  .process-grid strong {
    margin: -4px 0 2px;
    font-size: 14px;
  }

  .process-grid p {
    font-size: 12px;
  }

  .contact-cta::before {
    width: 150px;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    min-height: 270px;
    padding-block: 38px;
    text-align: center;
  }

  .contact-cta h2 {
    margin-inline: auto;
    font-size: 25px;
  }

  .contact-title-tail {
    display: block;
    margin-top: 4px;
    font-size: 20px;
  }

  .contact-cta p {
    font-size: 17px;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 16px;
    gap: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-button {
    width: 100%;
    min-width: 0;
  }

  .contact-links {
    grid-template-columns: 1fr 1fr;
    padding-block: 9px;
  }

  .contact-links > a {
    justify-content: flex-start;
    padding: 13px 12px;
  }

  .contact-links > a + a {
    border-left: 0;
  }

  .contact-links > a:nth-child(even) {
    border-left: 1px solid rgba(180, 138, 71, 0.3);
  }

  .contact-links > a:nth-child(n + 3) {
    border-top: 1px solid rgba(180, 138, 71, 0.3);
  }

  .contact-links strong {
    font-size: 16px;
  }

  .contact-links small {
    font-size: 14px;
  }

  .contact-links img,
  .mail-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 390px) {
  .brand-name,
  .brand-divider {
    display: none;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

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

  .contact-links > a:nth-child(even) {
    border-left: 0;
  }

  .contact-links > a + a {
    border-top: 1px solid rgba(180, 138, 71, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
