:root {
  --bg: #efe7db;
  --bg-deep: #e5d7c2;
  --surface: rgba(255, 252, 247, 0.72);
  --surface-strong: rgba(33, 30, 26, 0.82);
  --text: #201d19;
  --muted: #5f584f;
  --accent: #a14f2a;
  --accent-soft: #cf9d6c;
  --line: rgba(32, 29, 25, 0.12);
  --shadow: 0 30px 80px rgba(57, 42, 18, 0.14);
  --max-width: 1180px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 34%),
    linear-gradient(180deg, #f3eee5 0%, var(--bg) 42%, #eadbc7 100%);
}

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

.site-shell {
  min-height: 100vh;
}

.site-header,
.statement,
.services,
.detail-band,
.contact {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--surface-strong);
  color: #f6efe5;
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  gap: 1.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  width: min(100%, 1440px);
  margin: 0 auto;
  min-height: calc(100svh - 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem 1rem 4rem;
}

.hero-copy {
  max-width: 42rem;
  padding: 2rem 0 2rem clamp(0rem, 4vw, 4rem);
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.94;
  max-width: 9ch;
}

.hero-text,
.statement p,
.service-item p,
.contact p,
.detail-list {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 32rem;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--surface-strong);
  color: #f7f1e8;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.44);
}

.hero-art {
  position: relative;
  min-height: 640px;
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 248, 240, 0.8), rgba(207, 157, 108, 0.35)),
    linear-gradient(180deg, rgba(58, 39, 13, 0.05), rgba(58, 39, 13, 0.18));
  box-shadow: var(--shadow);
}

.art-disc {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.4px);
}

.art-disc-large {
  width: 28rem;
  height: 28rem;
  right: -7rem;
  top: -5rem;
  background: radial-gradient(circle, rgba(251, 247, 241, 0.92), rgba(203, 152, 96, 0.25) 70%, transparent 72%);
}

.art-disc-small {
  width: 18rem;
  height: 18rem;
  left: -5rem;
  bottom: -4rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(161, 79, 42, 0.2) 68%, transparent 72%);
}

.art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 29, 25, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 29, 25, 0.08) 1px, transparent 1px);
  background-size: 3.8rem 3.8rem;
  mask-image: linear-gradient(180deg, transparent 5%, rgba(0, 0, 0, 0.95) 28%);
}

.art-panel {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: min(72%, 24rem);
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1.25rem;
  backdrop-filter: blur(18px);
  background: rgba(22, 18, 13, 0.58);
  color: #f8f1e7;
}

.art-panel p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.art-panel p:last-child {
  border-bottom: 0;
}

.statement,
.services,
.detail-band,
.contact {
  padding: 5rem 0;
}

.statement-layout,
.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.services {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 52rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.service-item {
  min-height: 17rem;
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: rgba(255, 251, 246, 0.52);
  border: 1px solid rgba(32, 29, 25, 0.08);
  box-shadow: 0 20px 50px rgba(77, 54, 19, 0.08);
}

.service-item span {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 2.2rem;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.detail-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-list {
  margin: 0;
  padding-left: 1.25rem;
}

.detail-list li + li {
  margin-top: 0.8rem;
}

.contact {
  max-width: 48rem;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .statement-layout,
  .detail-band,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-copy {
    padding: 1rem 0;
  }

  .hero-art {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .hero,
  .site-header,
  .statement,
  .services,
  .detail-band,
  .contact {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  .hero-art {
    min-height: 380px;
  }

  .art-panel {
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-delay {
    opacity: 1;
    transform: none;
  }
}
