
:root {
  --terracotta: #8b5242;
  --terracotta-dark: #714036;
  --sand: #dcd0b9;
  --teal: #49696c;
  --paper: #f5f0e7;
  --ink: #3c3530;
  --muted: #71665e;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.page-shell {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 4vw, 64px);
  isolation: isolate;
}

.page-shell::before {
  position: absolute;
  z-index: -2;
  top: -18vw;
  right: -9vw;
  width: 45vw;
  height: 70vw;
  border: 1px solid rgba(142, 82, 69, 0.17);
  border-radius: 50%;
  content: "";
  transform: rotate(22deg);
}

.page-shell::after {
  position: absolute;
  z-index: -2;
  bottom: -28vw;
  left: -14vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(142, 82, 69, 0.12);
  border-radius: 50%;
  content: "";
}

.ambient {
  position: absolute;
  z-index: -3;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.6;
}

.ambient-one {
  top: -18%;
  right: -8%;
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(216, 201, 170, 0.62), transparent 68%);
}

.ambient-two {
  bottom: -25%;
  left: -10%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(142, 82, 69, 0.1), transparent 68%);
}

.content {
  display: grid;
  width: min(1180px, 100%);
  flex: 1;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(56px, 9vw, 140px);
  margin: auto;
  padding: 48px 0;
}

.brand-card {
  position: relative;
  width: min(100%, 460px);
  justify-self: end;
  box-shadow: 0 30px 80px rgba(91, 52, 43, 0.14);
}

.brand-card::before {
  position: absolute;
  z-index: -1;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(142, 82, 69, 0.35);
  content: "";
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.message {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 span {
  display: block;
  color: var(--terracotta);
  font-style: italic;
}

.intro {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: 1px solid var(--terracotta);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
.contact-list a:focus-visible {
  outline: 2px solid var(--terracotta-dark);
  outline-offset: 4px;
}

.button-primary {
  background: var(--terracotta);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-secondary {
  background: transparent;
  color: var(--terracotta);
}

.button-secondary:hover {
  background: rgba(142, 82, 69, 0.06);
}

.button-icon {
  font-size: 0.95rem;
}

.button-icon.phone {
  font-size: 1.25rem;
  transform: rotate(-35deg);
}

.contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.contact-list a {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-list a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

footer {
  display: flex;
  width: min(1180px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(142, 82, 69, 0.18);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

footer p,
footer span {
  margin: 0;
}

@media (max-width: 820px) {
  .page-shell {
    padding: 24px;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 38px 0 58px;
  }

  .brand-card {
    width: min(84vw, 380px);
    justify-self: center;
  }

  .message {
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .intro {
    margin-right: auto;
    margin-left: auto;
  }

  .actions {
    justify-content: center;
  }

  .contact-list {
    align-items: center;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 18px;
  }

  .content {
    gap: 44px;
    padding-top: 26px;
  }

  .brand-card::before {
    top: 12px;
    right: 12px;
  }

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

  .button {
    min-width: 0;
    padding: 15px 12px;
  }

  .contact-list {
    font-size: 0.8rem;
  }

  footer {
    font-size: 0.6rem;
    line-height: 1.6;
  }
}

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