:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: rgba(17, 17, 17, 0.08);
  --primary: #111111;
  --accent: #f0b65f;
  --teal: #85c8cf;
  --teal-deep: #65aab1;
  --shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 12%, rgba(133, 200, 207, 0.12), transparent 18%),
    linear-gradient(180deg, #fffdfa 0%, #f8f5ef 100%);
}

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

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

.page-shell {
  width: min(calc(100% - 30px), var(--content-width));
  margin: 0 auto;
  padding: 18px 0 22px;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 0.88rem;
}

.nav a {
  position: relative;
  transition: opacity 180ms ease;
}

.nav a:hover {
  opacity: 0.65;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--text);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

.hero,
.section-block,
.section-split,
.section-promo,
.footer-cta {
  margin-top: 26px;
}

.hero {
  position: relative;
  padding: 18px 0 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  top: 88px;
  left: 0;
  width: 120px;
  height: 120px;
  background:
    radial-gradient(circle, rgba(17, 17, 17, 0.08) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.7;
}

.hero::after {
  display: none;
}

.hero-head {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-head h1,
.section-heading h2,
.split-copy h2,
.promo-copy h2,
.footer-cta-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

.button-link {
  gap: 8px;
  color: var(--text);
}

.button-link::after {
  content: ">";
  font-size: 0.85rem;
}

.hero-body {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18));
}

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

.hero-highlights {
  display: grid;
  gap: 22px;
}

.highlight-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.highlight-item span {
  font-size: 0.84rem;
  font-weight: 700;
}

.highlight-item h3,
.collection-card h3,
.feature-card h3,
.story-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.highlight-item p,
.feature-card p,
.split-copy p,
.promo-copy p,
.story-card p,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.doodle {
  position: absolute;
  pointer-events: none;
}

.doodle-dot {
  left: -14px;
  top: 60px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(1px);
}

.section-block {
  padding: 6px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-story .section-heading {
  margin-top: 60px;
  margin-bottom: 84px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.collection-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
}

.collection-card-inner {
  height: 240px;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.collection-card:hover .collection-card-inner {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 42px rgba(17, 17, 17, 0.14);
  filter: saturate(1.05);
}

.collection-stone {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.12)),
    url("./generated/collection-1.png") center/cover no-repeat;
}

.collection-sky {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.08)),
    url("./generated/collection-2.png") center/cover no-repeat;
}

.collection-sand {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.1)),
    url("./generated/collection-3.png") center/cover no-repeat;
}

.collection-white {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.08)),
    url("./generated/collection-4.png") center/cover no-repeat;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.12);
  background: #fff;
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.1);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.05);
  font-size: 1.25rem;
  line-height: 1;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 52px;
  padding: 18px 0 22px;
}

.split-copy h2,
.promo-copy h2,
.footer-cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.split-intro {
  max-width: 540px;
  margin: 42px 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.08);
}

.service-list li span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.service-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.split-circles {
  position: relative;
  min-height: 380px;
  max-width: 560px;
  margin-left: auto;
}

.circle-card {
  position: absolute;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.circle-large {
  top: 12px;
  right: 28px;
  width: 520px;
  height: 520px;
  z-index: 1;
}

.circle-medium {
  right: 30px;
  top: 34px;
  width: 168px;
  height: 168px;
  z-index: 3;
  border: 8px solid rgba(255, 255, 255, 0.92);
}

.circle-small {
  left: 118px;
  bottom: 210px;
  width: 102px;
  height: 102px;
  z-index: 2;
  border: 8px solid rgba(255, 255, 255, 0.92);
}

.circle-living {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.08)),
    url("./generated/circle-1.png") center/cover no-repeat;
}

.circle-window {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.08)),
    url("./generated/circle-2.png") center/cover no-repeat;
}

.circle-detail {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.08)),
    url("./generated/circle-3.png") center/cover no-repeat;
}

.section-promo {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  align-items: center;
  margin-top: 38px;
}

.promo-card {
  min-height: 320px;
  border-radius: var(--radius-lg);
}

.promo-image {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.08)),
    url("./generated/promo-main.png") center/cover no-repeat;
}

.promo-copy {
  position: relative;
}

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

.story-image {
  height: 190px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
}

.story-one {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.1)),
    url("./generated/story-1.png") center/cover no-repeat;
}

.story-two {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.1)),
    url("./generated/story-2.png") center/cover no-repeat;
}

.story-three {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.1)),
    url("./generated/story-3.png") center/cover no-repeat;
}

.footer-cta {
  display: block;
  padding: 32px 0 18px;
  border-top: 1px solid var(--line);
}

.footer {
  margin-top: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-bottom {
  padding-top: 4px;
  font-size: 0.88rem;
  text-align: center;
}

.lift {
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.12);
}

.lift::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.22), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.lift:hover::before {
  opacity: 1;
}

@media (max-width: 1080px) {
  .hero-body,
  .section-split,
  .section-promo,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .feature-card-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 24px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--content-width));
  }

  .hero-head h1,
  .section-heading h2,
  .split-copy h2,
  .promo-copy h2,
  .footer-cta-copy h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .collection-grid,
  .feature-card-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual-card {
    min-height: 320px;
  }

  .split-circles {
    min-height: 300px;
    max-width: none;
    margin-left: 0;
  }

  .circle-large {
    right: 0;
    top: 16px;
    width: 290px;
    height: 290px;
  }

  .circle-medium {
    right: 8px;
    top: 56px;
    width: 106px;
    height: 106px;
    border-width: 6px;
  }

  .circle-small {
    left: 74px;
    bottom: 126px;
    width: 72px;
    height: 72px;
    border-width: 6px;
  }
}
