:root {
  --navy-950: #06172f;
  --navy-900: #071b39;
  --navy-800: #102d52;
  --navy-700: #173e6d;
  --gold-700: #8a6015;
  --gold-600: #ad781c;
  --gold-500: #c7922f;
  --gold-400: #d8ac57;
  --ivory: #faf9f6;
  --paper: #ffffff;
  --ink: #162438;
  --muted: #5f6b79;
  --line: #dfe3e8;
  --whatsapp: #25d366;
  --shadow-sm: 0 10px 30px rgba(6, 23, 47, 0.07);
  --shadow-md: 0 22px 60px rgba(6, 23, 47, 0.13);
  --container: 1200px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

::selection {
  color: var(--paper);
  background: var(--navy-700);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 23, 47, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 30px rgba(6, 23, 47, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

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

.brand-monogram {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: 50px;
  color: var(--navy-900);
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.18em;
}

.brand-monogram::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 7px;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

.brand-monogram span:last-child {
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12em;
  font-weight: 500;
}

.brand-copy {
  display: grid;
  color: var(--navy-900);
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold-700);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: clamp(22px, 2.4vw, 36px);
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  color: #344154;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease,
    transform 200ms ease, box-shadow 200ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

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

.button-gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, #d6a84f, var(--gold-500));
  box-shadow: 0 9px 22px rgba(199, 146, 47, 0.22);
}

.button-gold:hover {
  background: linear-gradient(135deg, #e0ba70, #cf9b38);
  box-shadow: 0 13px 28px rgba(199, 146, 47, 0.3);
}

.button-large {
  min-height: 56px;
  padding: 16px 25px;
  border-radius: 10px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 46px;
  height: 46px;
  padding: 0;
  gap: 5px;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid rgba(6, 23, 47, 0.14);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(6, 23, 47, 0.54);
  backdrop-filter: blur(6px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-nav {
  display: grid;
  padding: 18px 24px 26px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.mobile-nav > a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 54px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav .button {
  margin-top: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #eef0f2;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 819;
  object-fit: cover;
}

.hero-mobile-shade,
.hero-mobile-brand {
  display: none;
}

.hero-band {
  position: relative;
  color: var(--paper);
  background:
    radial-gradient(circle at 87% -20%, rgba(216, 172, 87, 0.22), transparent 36%),
    linear-gradient(110deg, var(--navy-950), var(--navy-800));
}

.hero-band::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 28%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.hero-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  min-height: 356px;
  padding-block: 66px;
  gap: clamp(48px, 8vw, 110px);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  gap: 12px;
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-400);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 200ms ease;
}

.text-link:hover svg {
  transform: translateY(3px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.8);
}

.hero-contact-note {
  display: flex;
  align-items: center;
  margin: 28px 0 0;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero-contact-note svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
}

.values-section {
  position: relative;
  padding: clamp(84px, 9vw, 130px) 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(199, 146, 47, 0.08), transparent 27%),
    var(--ivory);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.services-intro h2,
.about-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

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

.value-card {
  position: relative;
  min-height: 295px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(6, 23, 47, 0.09);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.value-card::after {
  position: absolute;
  right: -58px;
  bottom: -80px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(199, 146, 47, 0.08);
  border-radius: 50%;
}

.value-card:hover {
  border-color: rgba(199, 146, 47, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.icon-frame,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  background: rgba(199, 146, 47, 0.09);
  border: 1px solid rgba(199, 146, 47, 0.18);
}

.icon-frame {
  width: 62px;
  height: 62px;
  margin-bottom: 27px;
  border-radius: 50%;
}

.icon-frame svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.75;
}

.card-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #ccd1d8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.value-card h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.25;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.icon-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.icons-ready .icon-fallback {
  display: none;
}

.services-section {
  position: relative;
  padding: clamp(86px, 9vw, 136px) 0;
  overflow: hidden;
  background: var(--paper);
}

.services-section::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(199, 146, 47, 0.18);
  border-radius: 50%;
}

.services-section::after {
  position: absolute;
  top: -95px;
  right: -55px;
  width: 310px;
  height: 310px;
  content: "";
  border: 1px solid rgba(6, 23, 47, 0.08);
  border-radius: 50%;
}

.services-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  margin-bottom: 58px;
  gap: 70px;
}

.services-intro > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 340px;
  padding: 38px 34px 32px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.service-card::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.service-card:hover {
  z-index: 2;
  background: #fffdfa;
  box-shadow: 0 22px 50px rgba(6, 23, 47, 0.11);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 12px;
}

.service-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
}

.service-icon .icon-fallback {
  font-size: 12px;
}

.service-card h3 {
  margin: 0 0 13px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.3;
}

.service-card p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  gap: 8px;
  color: var(--gold-700);
  font-size: 13px;
  font-weight: 750;
}

.service-card > a svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.service-card > a:hover svg {
  transform: translateX(4px);
}

.about-section {
  position: relative;
  padding: clamp(86px, 9vw, 136px) 0;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(199, 146, 47, 0.07), transparent 36%),
    var(--navy-950);
}

.about-section::after {
  position: absolute;
  right: -12%;
  bottom: -64%;
  width: 60%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(216, 172, 87, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(216, 172, 87, 0.025), 0 0 0 160px rgba(216, 172, 87, 0.02);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(60px, 9vw, 126px);
}

.about-intro h2 {
  color: var(--paper);
}

.about-intro > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.about-signature {
  display: flex;
  align-items: center;
  margin-top: 38px;
  gap: 18px;
}

.signature-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-500);
}

.about-signature > span:last-child {
  display: grid;
}

.about-signature strong {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-signature small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.purpose-list {
  display: grid;
}

.purpose-card {
  position: relative;
  padding: 36px 0 36px 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.purpose-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.purpose-label {
  position: absolute;
  top: 43px;
  left: 0;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.purpose-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.purpose-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}

.contact-section {
  padding: clamp(78px, 8vw, 116px) 0;
  background: var(--ivory);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 410px;
  padding: clamp(42px, 7vw, 82px);
  gap: 72px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(6, 23, 47, 0.09);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  content: "";
  background: linear-gradient(var(--gold-400), var(--gold-700));
}

.contact-decor {
  position: absolute;
  border: 1px solid rgba(199, 146, 47, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.contact-decor-one {
  top: -170px;
  right: -100px;
  width: 390px;
  height: 390px;
}

.contact-decor-two {
  right: 70px;
  bottom: -210px;
  width: 330px;
  height: 330px;
}

.contact-copy,
.contact-action {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 670px;
}

.contact-copy > p:last-child {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-tagline {
  margin: 12px 0 0;
  color: var(--gold-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.contact-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 260px;
}

.button-whatsapp {
  color: #062f1a;
  background: var(--whatsapp);
  box-shadow: 0 13px 28px rgba(37, 211, 102, 0.22);
}

.button-whatsapp:hover {
  background: #41dd7b;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.3);
}

.contact-action > span {
  margin-top: 18px;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 800;
}

.contact-action > small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  padding-block: 54px;
  gap: clamp(34px, 7vw, 88px);
}

.brand-footer .brand-copy strong,
.brand-footer .brand-monogram {
  color: var(--paper);
}

.brand-footer .brand-copy small {
  color: var(--gold-400);
}

.footer-main > p {
  max-width: 510px;
  margin: 0;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  gap: 26px;
}

.footer-nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 19px;
  gap: 9px;
  color: #062f1a;
  background: var(--whatsapp);
  border: 3px solid var(--paper);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(6, 23, 47, 0.26);
  font-size: 13px;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 16px 38px rgba(6, 23, 47, 0.33);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero-band-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 46px;
  }

  .values-grid {
    gap: 16px;
  }

  .value-card {
    padding: 29px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 62px;
  }

  .contact-card {
    gap: 44px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero-image-wrap {
    height: min(68vh, 620px);
    min-height: 490px;
    background: var(--navy-900);
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 73% center;
  }

  .hero-mobile-shade {
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(180deg, rgba(6, 23, 47, 0.07) 35%, rgba(6, 23, 47, 0.82) 100%);
  }

  .hero-mobile-brand {
    position: absolute;
    right: 22px;
    bottom: 28px;
    left: 22px;
    display: grid;
    color: var(--paper);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  }

  .hero-mobile-brand > span {
    margin-bottom: 12px;
    color: var(--gold-400);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1;
  }

  .hero-mobile-brand strong {
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .hero-mobile-brand small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .hero-band-grid {
    grid-template-columns: 1fr;
    padding-block: 58px 62px;
    gap: 34px;
  }

  .hero-actions {
    align-items: flex-start;
  }

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

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

  .services-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .services-intro > p {
    max-width: 630px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    gap: 38px;
  }

  .contact-action {
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main > p {
    max-width: 560px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    gap: 8px;
  }

  .brand-monogram {
    width: 42px;
    font-size: 25px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    max-width: 180px;
    font-size: 7.5px;
    letter-spacing: 0.1em;
  }

  .hero-image-wrap {
    height: 500px;
    min-height: 0;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

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

  .values-section,
  .services-section,
  .about-section,
  .contact-section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .services-intro h2,
  .about-intro h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

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

  .service-card {
    min-height: 310px;
    padding: 32px 26px 27px;
  }

  .purpose-card {
    padding: 32px 0;
  }

  .purpose-label {
    position: static;
    display: inline-block;
    margin-bottom: 13px;
    writing-mode: initial;
    transform: none;
  }

  .contact-card {
    min-height: 0;
    padding: 40px 26px;
    border-radius: 15px;
  }

  .contact-action {
    align-items: stretch;
    min-width: 0;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
    padding-block: 18px;
    gap: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
