* {
  box-sizing: border-box;
}

:root {
  --bg: #fffdf8;
  --bg-muted: #f5f0e8;
  --text: #1f2933;
  --muted: #5f6b76;
  --line: #e3dccf;
  --primary: #6d4c2f;
  --primary-dark: #4e3520;
  --accent: #d78b45;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(38, 28, 18, 0.12);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-size: 0.85rem;
}

.logo-text {
  font-size: 1rem;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--white);
  color: var(--text);
}

.section {
  padding: 84px 0;
}

.section-large {
  padding: 108px 0 88px;
}

.muted {
  background: var(--bg-muted);
}

.hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(215, 139, 69, 0.22), transparent 34%),
    linear-gradient(135deg, #fffdf8 0%, #f5efe5 100%);
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.hero h1,
.section-heading h2,
.split h2,
.contact h2 {
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.section-heading h2,
.split h2,
.contact h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.hero-lead,
.section-heading p,
.split p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.primary {
  color: var(--white);
  background: var(--primary);
}

.secondary {
  color: var(--primary-dark);
  border-color: var(--primary);
  background: var(--white);
}

.line {
  color: var(--white);
  background: #06c755;
}

.notice,
.small-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card {
  border-radius: 32px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-card-inner {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, #ffffff, #f6ede1);
}

.card-label {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.card-main {
  margin: 4px 0;
  font-size: 1.8rem;
  font-weight: 900;
}

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

.hero-card hr {
  width: 100%;
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.cards,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(38, 28, 18, 0.06);
}

.card h3,
.service-item h3,
.flow-list h3 {
  margin: 0 0 8px;
  line-height: 1.35;
}

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

.service-list {
  display: grid;
  gap: 16px;
}

.service-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.number {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 48px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.check-list p::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--accent);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.placeholder-image,
.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed #b9aa98;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fffaf1;
  text-align: center;
}

.map-placeholder {
  min-height: 360px;
  padding: 24px;
}

.map-placeholder p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.3fr;
  gap: 16px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
}

.price-row.header {
  color: var(--white);
  background: var(--primary);
  font-weight: 800;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.area-list li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 700;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  font-weight: 900;
}

details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.contact p,
.contact .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.contact-box {
  max-width: 780px;
}

.business-info dl {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.business-info dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.business-info dt {
  font-weight: 800;
}

.business-info dd {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 36px 0 96px;
  background: #2b2118;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .global-nav {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: flex;
  }

  .section,
  .section-large {
    padding: 64px 0;
  }

  .hero-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .three-columns,
  .gallery-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

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

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .business-info dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 14px;
    color: var(--white);
    background: var(--primary);
    font-weight: 900;
  }
}
