:root {
  --ink: #151515;
  --muted: #625b53;
  --paper: #f7f2ea;
  --paper-strong: #fffdf8;
  --line: rgba(34, 27, 23, 0.12);
  --burgundy: #4b111c;
  --burgundy-soft: #7b2836;
  --burgundy-dark: #2a0d13;
  --gold: #b89155;
  --gold-soft: #d9c39d;
  --charcoal: #151313;
  --shadow: 0 24px 70px rgba(35, 28, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px clamp(20px, 5vw, 72px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 46px rgba(28, 22, 16, 0.08);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 145, 85, 0.88);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-soft);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  padding: 154px clamp(20px, 5vw, 78px) 118px;
  color: #fff;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-background,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background {
  z-index: 0;
  background: var(--charcoal);
}

.hero-slide {
  background-position: 58% center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 18s ease-in-out infinite;
}

.slide-one {
  background-image: url("https://images.unsplash.com/photo-1593115057322-e94b77572f20?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=82&w=2200");
}

.slide-two {
  background-image: url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=82&w=2200");
  animation-delay: 6s;
}

.slide-three {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=82&w=2200");
  animation-delay: 12s;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(16, 12, 12, 0.92) 0%, rgba(42, 13, 19, 0.78) 45%, rgba(42, 13, 19, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 18% 33%, rgba(184, 145, 85, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 36%);
  pointer-events: none;
}

@keyframes heroFade {
  0%,
  30% {
    opacity: 1;
    transform: scale(1.04);
  }

  38%,
  92% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-left: clamp(0px, 1.5vw, 22px);
}

.hero-content::before {
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(184, 145, 85, 0));
  content: "";
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 700;
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 4.5vw, 66px);
  font-weight: 700;
  text-wrap: balance;
}

h3 {
  font-size: 23px;
  font-weight: 700;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: rgba(75, 17, 28, 0.92);
  border-color: rgba(217, 195, 157, 0.42);
  box-shadow: 0 18px 38px rgba(42, 13, 19, 0.32);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-strip {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(217, 195, 157, 0.24);
  border-radius: 8px;
  background: rgba(20, 16, 15, 0.34);
  backdrop-filter: blur(22px);
}

.hero-strip span {
  display: block;
  padding: 17px 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  border-right: 1px solid rgba(217, 195, 157, 0.18);
}

.hero-strip span:last-child {
  border-right: 0;
}

.contact-card span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

section:not(.hero) {
  padding: 104px clamp(20px, 5vw, 72px);
}

.intro-section,
.approach-section {
  background: var(--paper-strong);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 46px;
}

.section-heading p,
.approach-content p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 270px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 145, 85, 0));
  content: "";
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: #fffdf8;
  border-color: rgba(184, 145, 85, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin-bottom: 18px;
}

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

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.approach-content p {
  max-width: 680px;
  margin-top: 24px;
}

.principles {
  display: grid;
  gap: 14px;
}

.principles div {
  padding: 26px;
  border-left: 3px solid var(--gold);
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(31, 24, 18, 0.07);
}

.principles strong,
.principles span {
  display: block;
}

.principles strong {
  font-size: 23px;
  line-height: 1.2;
}

.principles span {
  margin-top: 8px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(34px, 6vw, 88px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(75, 17, 28, 0.98), rgba(21, 19, 19, 0.98)),
    var(--burgundy-dark);
}

.contact-section .section-kicker {
  color: #d7ad6a;
}

.contact-section p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.contact-card a,
.contact-card address {
  display: block;
  margin: 0;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-style: normal;
  transition: background 180ms ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.contact-card a:last-child,
.contact-card address:last-child {
  border-bottom: 0;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fffaf2;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer a {
  color: var(--burgundy);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #22c55e;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(12, 74, 43, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1fbd5a;
  box-shadow: 0 20px 46px rgba(15, 87, 45, 0.42);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .section-heading,
  .approach-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 840px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand strong {
    max-width: 185px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #fffaf2;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding: 108px 20px 148px;
  }

  .hero-slide {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 20% 28%, rgba(170, 125, 62, 0.18), transparent 30%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.32));
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-strip {
    left: 20px;
    right: 20px;
    bottom: 22px;
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-strip span:last-child {
    border-bottom: 0;
  }

  .hero-actions {
    margin-top: 26px;
  }

  section:not(.hero) {
    padding: 72px 20px;
  }

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

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 20px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .hero-slide {
    animation: none;
  }

  .slide-one {
    opacity: 1;
  }
}
