:root {
  --ink: #281a19;
  --muted: #725d58;
  --paper: #fffaf2;
  --ivory: #f6efe3;
  --sage: #7d8d5f;
  --sage-dark: #42523a;
  --wine: #7b2433;
  --wine-deep: #4f1822;
  --gold: #c69a45;
  --line: rgba(40, 26, 25, 0.14);
  --shadow: 0 22px 60px rgba(51, 30, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#approach,
#services,
#contact {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 34px rgba(40, 26, 25, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff7e8;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.header-action {
  text-decoration: none;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.header-action {
  justify-self: end;
  min-width: 118px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(43, 18, 19, 0.86), rgba(67, 24, 28, 0.58) 44%, rgba(55, 31, 20, 0.2)),
    linear-gradient(0deg, rgba(40, 26, 25, 0.46), rgba(40, 26, 25, 0.08));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.approach-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
}

.hero-copy {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #201511;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-band {
  width: 100%;
  padding: 42px clamp(18px, 5vw, 72px);
  background: var(--ivory);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--wine-deep);
}

.intro-item {
  min-height: 180px;
  padding: 34px;
  background: var(--ivory);
}

.intro-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--wine);
  font-weight: 900;
}

.intro-item strong {
  display: block;
  font-size: 20px;
}

.intro-item p,
.section-heading p,
.service-card p,
.approach-copy p,
.approach-list p,
.contact-panel p {
  color: var(--muted);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading h2,
.approach-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 18px;
}

.welcome-section {
  padding-bottom: 26px;
}

.welcome-copy {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.welcome-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #fffdf8;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(123, 36, 51, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-body {
  padding: 22px;
}

.service-card h3 {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.2;
}

.service-card p {
  margin: 14px 0 0;
}

.service-category {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(123, 36, 51, 0.08);
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-details {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.service-details summary {
  cursor: pointer;
  color: var(--wine);
  font-size: 14px;
  font-weight: 900;
}

.service-details p {
  font-size: 14px;
}

.approach {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-copy {
  display: grid;
  align-content: start;
}

.approach-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 18px;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.approach-list div {
  display: grid;
  align-content: start;
  min-height: 124px;
  padding: 20px;
  background: var(--paper);
}

.approach-list strong {
  color: var(--wine);
  font-size: 18px;
}

.approach-list p {
  margin: 7px 0 0;
  font-size: 15px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 560px);
  gap: 18px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.contact-panel {
  padding: 32px;
}

.contact-logo {
  width: 106px;
  height: 106px;
  margin-bottom: 18px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(79, 24, 34, 0.1);
}

.contact-panel h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.pending-contact {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(125, 141, 95, 0.14);
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 900;
}

.contact-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 250, 242, 0.78);
}

.contact-action-row span {
  min-width: 0;
  color: var(--wine);
  font-size: 16px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.mini-action {
  display: inline-flex;
  min-width: 68px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--wine);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.mini-action {
  color: #fff;
}

.contact-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.hours {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(40, 26, 25, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--wine);
  outline: 3px solid rgba(198, 154, 69, 0.22);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--wine-deep);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(43, 18, 19, 0.88), rgba(67, 24, 28, 0.58));
  }

  .intro,
  .service-grid,
  .approach,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach {
    align-items: start;
  }

  .intro-item {
    min-height: auto;
  }
}

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

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .header-action {
    min-width: 0;
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .approach-copy > p:not(.eyebrow),
  .approach-list p {
    display: none;
  }

  .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-list div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 14px;
    text-align: center;
  }

  .approach-list strong {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .section-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .intro-item,
  .contact-panel {
    padding: 22px;
  }

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

  .service-body {
    padding: 22px;
  }

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

  .mini-action {
    width: 100%;
  }

}
