:root {
  --black: #101010;
  --black-deep: #080808;
  --cream: #f4efe3;
  --cream-2: #fffaf0;
  --gold: #f2c35d;
  --gold-dark: #9e6a14;
  --line: rgba(242, 195, 93, 0.22);
  --text: #f7f3e8;
  --muted: #d7cab0;
  --ink: #111;
  --instagram: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 76%, #515bd4 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "Meiryo", system-ui, sans-serif;
  color: var(--text);
  background: var(--black);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 92px;
  padding: 0 clamp(20px, 4.5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(7, 7, 7, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand img,
.logo-panel img {
  object-fit: cover;
  object-position: center;
  background: #000;
  filter: contrast(1.18) brightness(1.08);
}

.brand img {
  width: 90px;
  height: 62px;
  border-radius: 3px;
}

.brand strong {
  display: block;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 950;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: 0;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.header-cta,
.primary {
  color: #fff;
  background: var(--instagram);
  box-shadow: 0 18px 48px rgba(221, 42, 123, 0.28);
}

.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(242, 195, 93, 0.42);
}

.eyebrow {
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  padding: clamp(56px, 6vw, 88px) clamp(20px, 4.5vw, 72px);
  background: var(--black);
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(52px, 5.4vw, 74px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  white-space: nowrap;
}

.hero-lead {
  margin-top: 28px;
  max-width: 690px;
  color: #f0e7d5;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.95;
  font-weight: 800;
}

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

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 360px;
  border: 1px solid rgba(242, 195, 93, 0.28);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0));
}

.section-split {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
}

.logo-panel {
  padding: clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  background: #090909;
  border-top: 1px solid rgba(242, 195, 93, 0.18);
}

.logo-panel img {
  width: min(235px, 100%);
  aspect-ratio: 1.42;
}

.logo-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 800;
}

.intro-content {
  padding: clamp(48px, 5vw, 72px);
  color: var(--ink);
  background: var(--cream);
}

.intro-content h2,
.section-heading h2,
.area h2,
.contact h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0;
}

.intro-content .eyebrow,
.section-heading .eyebrow,
.area .eyebrow,
.contact .eyebrow {
  color: var(--gold-dark);
}

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

.concern-grid article,
.area-panel,
.service-card {
  background: #fff;
  border: 1px solid #d8cfbc;
}

.concern-grid article {
  padding: 26px;
}

.concern-grid h3,
.service-card h3,
.area-panel dt,
.contact h2 {
  color: var(--ink);
}

.concern-grid p,
.service-card p,
.section-heading p,
.contact p {
  margin-top: 10px;
  color: #625b50;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 760;
}

.services {
  padding: clamp(56px, 6vw, 88px) clamp(20px, 4.5vw, 72px);
  background: #111;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: end;
}

.section-heading h2 {
  color: #fff8e8;
}

#service-title {
  text-align: left;
  white-space: nowrap;
  font-size: clamp(24px, 2.35vw, 31px);
}

.section-heading p {
  color: #d8d0bf;
}

.service-card {
  overflow: hidden;
  background: #171717;
  border-color: rgba(242, 195, 93, 0.18);
}

.service-image {
  height: 230px;
  overflow: hidden;
  background: #000;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.92);
}

.service-image-demolition img {
  object-position: 72% 45%;
}

.service-image-tree img {
  object-position: 34% 64%;
}

.service-image-ground img {
  object-position: 50% 82%;
}

.service-card > div:last-child {
  padding: 26px;
}

.service-card span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-top: 12px;
  color: #fff8e8;
  font-size: 25px;
}

.service-card p {
  color: #d5cbb8;
}

.area {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 6vw, 88px) clamp(20px, 4.5vw, 72px);
  color: var(--ink);
  background: var(--cream);
}

.area-copy {
  align-self: center;
}

.area-panel {
  padding: 30px;
}

.area-panel dl {
  margin: 0;
}

.area-panel div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #ded3bf;
}

.area-panel div:first-child {
  border-top: 0;
}

.area-panel dt {
  font-weight: 950;
  color: #6e6250;
}

.area-panel dd {
  margin: 0;
  min-width: 0;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(48px, 5vw, 72px) clamp(20px, 4.5vw, 72px);
  background: #fffaf0;
  color: var(--ink);
  border-top: 1px solid #ded3bf;
}

.contact > div {
  max-width: 780px;
}

.contact .button {
  min-width: 190px;
}

.site-footer {
  min-height: 104px;
  padding: 0 clamp(20px, 4.5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #080808;
  color: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 950;
}

.site-footer a {
  color: var(--gold);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand img {
    width: 78px;
    height: 54px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(242, 195, 93, 0.18);
  }

  .header-cta {
    min-height: 50px;
    padding: 0 20px;
  }

  .hero,
  .section-split,
  .area,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-visual {
    order: -1;
    min-height: 260px;
  }

  .hero-visual img {
    min-height: 300px;
  }

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

  .logo-panel {
    min-height: 280px;
  }

  .area-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand {
    width: 100%;
  }

  .brand span {
    min-width: 0;
  }

  .brand small {
    font-size: 11px;
  }

  .header-cta {
    width: 100%;
  }

  .site-nav a {
    font-size: 13px;
  }

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

  .hero-actions .button,
  .contact .button {
    width: 100%;
  }

  .intro-content h2,
  .section-heading h2,
  .area h2,
  .contact h2 {
    font-size: 34px;
  }

  #service-title {
    white-space: normal;
    font-size: 30px;
    line-height: 1.25;
  }
}
