:root {
  --ink: #f4f1ea;
  --muted: #d0c5b7;
  --charcoal: #2f2822;
  --charcoal-soft: #45382e;
  --stone: #777a70;
  --moss: #5f6e55;
  --sage: #8c9a80;
  --accent-white: #f4f1ea;
  --bronze: #9b7653;
  --umber: #5f3f2d;
  --walnut: #3f3027;
  --clay: #7b563d;
  --silver: #d8d8d2;
  --paper: #f1ede2;
  --line: rgba(216, 216, 210, 0.24);
  --shadow: rgba(8, 11, 10, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 216, 210, 0.14), transparent 24rem),
    radial-gradient(circle at 18% 18%, rgba(123, 86, 61, 0.46), transparent 36rem),
    radial-gradient(circle at 84% 32%, rgba(95, 110, 85, 0.22), transparent 30rem),
    linear-gradient(145deg, #241d19 0%, #4a3327 48%, #6b4b36 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(61, 62, 58, 0.86);
  border-bottom: 1px solid rgba(216, 216, 210, 0.18);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 3.25rem;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(216, 216, 210, 0.34);
  border-radius: 50%;
  box-shadow: 0 1rem 2.5rem var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 3vw, 2rem);
  color: var(--accent-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #ffffff;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 90vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.6rem;
  padding: 4.25rem clamp(1rem, 5vw, 4rem) 1.25rem;
  text-align: center;
}

.hero-logo-wrap {
  position: relative;
  width: clamp(19rem, 48vh, 32rem);
  margin-bottom: 1.65rem;
  padding: 0.6rem;
  border: 1px solid rgba(216, 216, 210, 0.34);
  border-radius: 50%;
  box-shadow:
    0 2.4rem 6rem var(--shadow),
    0 0 0 0.8rem rgba(216, 216, 210, 0.04);
}

.hero-logo-wrap::before,
.hero-logo-wrap::after {
  position: absolute;
  inset: -0.95rem;
  z-index: -1;
  content: "";
  border: 1px solid rgba(216, 216, 210, 0.18);
  border-radius: 50%;
}

.hero-logo-wrap::after {
  inset: -1.35rem;
  border-color: rgba(155, 118, 83, 0.2);
  border-style: dashed;
}

.hero-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.kicker,
.section-label {
  margin: 0;
  color: var(--accent-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  position: relative;
  z-index: 2;
  font-size: clamp(0.98rem, 1.5vw, 1.2rem);
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.2vw, 5.45rem);
  font-weight: 700;
  white-space: nowrap;
}

.hero-copy {
  max-width: 42rem;
  margin-bottom: 0.2rem;
  color: var(--paper);
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.primary-action,
.contact-form button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  color: #202521;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 1rem 2.2rem var(--shadow);
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.primary-action:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 1.4rem 2.7rem var(--shadow);
}

.statement {
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
  background: #f4f1ea;
  color: #2f302d;
  text-align: center;
}

.statement p {
  max-width: 14ch;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.96;
}

.split-section,
.services,
.contact {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  background:
    radial-gradient(circle at 12% 20%, rgba(155, 118, 83, 0.2), transparent 28rem),
    linear-gradient(135deg, rgba(63, 48, 39, 0.72), rgba(47, 40, 34, 0.66));
  border-top: 1px solid var(--line);
}

.split-section h2,
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 6.75rem);
}

.contact h2 {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
}

.text-stack {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.services {
  background:
    radial-gradient(circle at 84% 18%, rgba(140, 154, 128, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(83, 58, 42, 0.7), rgba(40, 32, 27, 0.78));
}

.services .section-label,
.split-section .section-label,
.contact .section-label {
  color: var(--accent-white);
}

.services .section-heading h2,
.split-section h2 {
  color: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 18rem;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: rgba(48, 38, 31, 0.9);
}

.service-card span {
  display: block;
  margin-bottom: 3rem;
  color: var(--bronze);
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--silver);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  background:
    radial-gradient(circle at 18% 16%, rgba(216, 216, 210, 0.12), transparent 24rem),
    radial-gradient(circle at 82% 20%, rgba(95, 110, 85, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(88, 61, 43, 0.96), rgba(68, 51, 39, 0.96) 48%, rgba(36, 41, 40, 0.94));
  border-top: 1px solid var(--line);
}

.contact-copy p:not(.section-label) {
  max-width: 26rem;
  color: rgba(244, 241, 234, 0.78);
  font-size: 1.1rem;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1.25rem;
  padding: 0 1rem;
  color: var(--paper);
  border: 1px solid rgba(244, 241, 234, 0.32);
  border-radius: 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.contact-phone:hover {
  transform: translateY(-2px);
  background: rgba(244, 241, 234, 0.08);
  border-color: rgba(244, 241, 234, 0.62);
}

.contact-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 216, 210, 0.28);
  border-radius: 0.5rem;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: rgba(28, 24, 21, 0.66);
  font: inherit;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 216, 210, 0.78);
  box-shadow: 0 0 0 4px rgba(140, 154, 128, 0.16);
}

.contact-form button {
  justify-self: start;
  border-radius: 0.5rem;
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--paper);
  font-weight: 700;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 4rem);
  color: var(--muted);
  background: #2b211c;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

footer a {
  font-weight: 800;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: center;
  }

  .nav-links {
    gap: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .hero {
    min-height: 96svh;
    gap: 0.65rem;
    padding-top: 6.5rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .hero-logo-wrap {
    width: min(21rem, 82vw);
  }

  .hero-logo-wrap::before {
    inset: -0.75rem;
  }

  .hero-logo-wrap::after {
    inset: -1.1rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
    white-space: normal;
  }

  .hero-copy {
    margin-right: auto;
    margin-left: auto;
  }

  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 14rem;
  }

  .service-card span {
    margin-bottom: 1.8rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
