:root {
  --bg: #ffffff;
  --paper: #f6efe9;
  --forest: #0f4b4d;
  --forest-deep: #093739;
  --sand: #cb9570;
  --sand-soft: #e4b081;
  --ink: #0f2030;
  --muted: #61737e;
  --container: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 80px rgba(10, 25, 25, 0.12);
  --swiper-navigation-sides-offset: 0px;
  --swiper-pagination-bottom: 0px;
  --swiper-pagination-top: auto;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.section-heading {
  text-align: center;
}

.section-copy {
  max-width: 660px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.section-copy-dark {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sand-soft);
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(203, 149, 112, 0.55);
  color: var(--sand);
  background: rgba(255, 255, 255, 0.8);
}

.decor-corners {
  position: relative;
  overflow: hidden;
}

.decor-corners::before,
.decor-corners::after {
  content: "";
  position: absolute;
  top: 0;
  width: 132px;
  height: 132px;
  opacity: 0.7;
  pointer-events: none;
}

.decor-corners::before {
  left: 0;
  background:
    linear-gradient(
      to right,
      rgba(228, 176, 129, 0.45) 0 1px,
      transparent 1px 100%
    ),
    linear-gradient(
      to bottom,
      rgba(228, 176, 129, 0.45) 0 1px,
      transparent 1px 100%
    );
  clip-path: polygon(0 0, 100% 0, 30% 100%, 0 100%);
}

.decor-corners::after {
  right: 0;
  transform: scaleX(-1);
  background:
    linear-gradient(
      to right,
      rgba(228, 176, 129, 0.45) 0 1px,
      transparent 1px 100%
    ),
    linear-gradient(
      to bottom,
      rgba(228, 176, 129, 0.45) 0 1px,
      transparent 1px 100%
    );
  clip-path: polygon(0 0, 100% 0, 30% 100%, 0 100%);
}

.hero-shell {
  position: relative;
  min-height: 900px;
  color: #fff;
  background: #000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 75, 77, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(4, 23, 24, 0.16);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-logo {
  width: 220px;
  object-fit: contain;
}

.brand-text {
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.94);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.icon-strip i {
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-slide {
  min-height: 900px;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 118px 0 102px;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 8, 10, 0.26) 0%,
      rgba(4, 8, 10, 0.16) 16%,
      rgba(4, 8, 10, 0.62) 100%
    ),
    linear-gradient(
      90deg,
      rgba(4, 8, 10, 0.45) 0%,
      rgba(4, 8, 10, 0.06) 44%,
      rgba(4, 8, 10, 0.24) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 26px;
}

.hero-controls {
  position: absolute;
  right: 60px;
  bottom: 58px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-nav {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--forest);
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.hero-controls .swiper-button-prev {
  left: -20px;
  z-index: 1;
}

.hero-controls .swiper-button-next {
  left: auto;
  right: auto;
  margin-left: 10px;
  z-index: 3;
}

.hero-nav:hover {
  background: #d7eeef;
}

.hero-nav::after {
  font-size: 15px;
  font-weight: 800;
}

.hero-pagination {
  position: static;
  z-index: 2;
  width: 48px !important;
  min-width: 48px;
  height: 48px;
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: var(--sand-soft);
  color: #fff;
  font-size: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hero-pagination .swiper-pagination-current,
.hero-pagination .swiper-pagination-total {
  color: #fff;
  font-size: 0.95rem;
}

.hero-pagination .swiper-pagination-current {
  margin-right: 0;
}

.hero-pagination .swiper-pagination-total {
  display: none;
}


.curated {
  position: relative;
  background:
    linear-gradient(180deg, #0d4143 0%, #0f4b4d 100%);
  color: #fff;
  text-align: center;
  padding-top: 72px;
  padding-bottom: 120px;
}

.curated .container {
  position: relative;
  z-index: 1;
}

.curated-intro {
  max-width: 620px;
  margin: 0 auto;
}

.curated .section-title {
  font-size: clamp(2.5rem, 4vw, 3.35rem);
  line-height: 1;
}

.curated .section-copy {
  max-width: 620px;
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.curated .btn {
  margin-top: 20px;
}

.curated::before,
.curated::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 150px;
  height: 118px;
  border-top: 1px solid rgba(228, 176, 129, 0.38);
  pointer-events: none;
}

.curated::before {
  left: 18px;
  border-left: 1px solid rgba(228, 176, 129, 0.38);
  clip-path: polygon(0 0, 100% 0, 56% 100%, 0 100%);
}

.curated::after {
  right: 18px;
  border-right: 1px solid rgba(228, 176, 129, 0.38);
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 100%);
}

.curated-intro::before,
.curated-intro::after {
  content: "";
  position: absolute;
  top: -56px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(228, 176, 129, 0.28);
  border-radius: 0 0 62px 0;
  opacity: 0.75;
  pointer-events: none;
}

.curated-intro::before {
  left: -128px;
}

.curated-intro::after {
  right: -128px;
  transform: scaleX(-1);
}

.curated-collage {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  margin: 56px auto -190px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 16px;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(8, 28, 29, 0.12);
  box-shadow: 0 26px 70px rgba(7, 21, 22, 0.28);
  z-index: 1;
  background: #0e4648;
}

.curated-card {
  position: relative;
  min-height: 320px;
  padding: 18px 18px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #d9d2c7;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.curated-card:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.curated-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(6, 18, 20, 0.3) 0%,
    rgba(6, 18, 20, 0.15) 38%,
    rgba(6, 18, 20, 0.35) 100%
  );
}

.curated-card-kitchen {
  background-position: center;
}

.curated-card-wardrobe {
  background-position: center;
}

.curated-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 18, 20, 0.18) 0%,
    rgba(6, 18, 20, 0.04) 38%,
    rgba(6, 18, 20, 0.2) 100%
  );
}

.curated-card-title {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
  text-align: left;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.services {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  padding: 30px 24px;
  border: 1px solid rgba(15, 75, 77, 0.12);
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 24, 24, 0.06);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--forest);
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.notes {
  background: var(--paper);
  padding-top: 190px;
  padding-bottom: 112px;
  text-align: center;
}

.notes .section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #102033;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
  margin-top: 54px;
}

.note-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #182736;
}

.note-icon {
  width: 66px;
  height: 66px;
  color: #20262f;
}

.note-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.note-item p {
  max-width: 132px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.notes-foot {
  margin-top: 26px;
  color: #7e7f82;
  font-size: 0.7rem;
  text-align: right;
}

.stats {
  background: var(--forest);
  color: #fff;
  text-align: center;
}

.stats .section-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 54px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.stat-icon {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.stat-icon svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.86);
}

.google-reviews {
  background: #f7f5f2;
}

.google-reviews .review-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px;
  margin-bottom: 32px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(17, 30, 31, 0.08);
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
}

.review-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: radial-gradient(circle at top left, #4285f4 0%, #0f4cb8 100%);
  font-size: 1.3rem;
}

.review-badge p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #5d6b76;
}

.review-badge strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  color: #102033;
}

.review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #354049;
  font-weight: 700;
  text-align: center;
}

.review-stars {
  color: var(--sand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-score small {
  color: #6a727b;
  font-weight: 600;
}

.review-slider-wrap {
  position: relative;
  padding: 0 58px 34px;
}

.review-status {
  margin: 0 0 18px;
  color: #6a727b;
  font-size: 0.95rem;
  text-align: center;
}

.review-status:empty {
  display: none;
}

.google-review-swiper {
  overflow: hidden;
}

.google-review-swiper .swiper-wrapper {
  align-items: stretch;
}

.google-review-swiper .swiper-slide {
  height: auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  padding: 28px 24px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(17, 30, 31, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(17, 30, 31, 0.1);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  overflow: hidden;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #e9eef2;
  color: #113144;
  font-weight: 800;
  font-size: 1rem;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar i {
  display: flex;
  line-height: 1;
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #162129;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e6f4ea;
  color: #1e6b3d;
  font-size: 0.8rem;
}

.review-time {
  margin: 0;
  color: #7d858d;
  font-size: 0.9rem;
}

.review-card-label {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(203, 149, 112, 0.14);
  color: var(--sand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-card p {
  margin: 0;
  color: #4a5158;
  line-height: 1.8;
  font-size: 0.98rem;
}

.review-card-footer {
  margin-top: auto;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.google-review-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(16, 32, 51, 0.18);
  color: var(--forest);
  background: #fff;
}

.google-review-nav::after {
  font-size: 16px;
  font-weight: 800;
}

.google-review-prev {
  left: 0;
}

.google-review-next {
  right: 0;
}

.google-review-prev,
.google-review-next {
  position: absolute;
  top: calc(50% - 17px);
  transform: translateY(-50%);
}

.google-review-pagination {
  position: static;
  margin-top: 24px;
}

.google-review-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 1;
  background: rgba(15, 75, 77, 0.2);
}

.google-review-pagination .swiper-pagination-bullet-active {
  background: var(--forest);
}

@media (max-width: 720px) {
  .google-reviews .review-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .review-slider-wrap {
    padding: 0 0 34px;
  }

  .google-review-prev,
  .google-review-next {
    display: none;
  }
}

.lighting {
  padding-top: 92px;
  padding-bottom: 88px;
  background: #fff;
}

.lighting-banner {
  position: relative;
  overflow: hidden;
  min-height: 508px;
  background:
    radial-gradient(
      circle at 58% 52%,
      rgba(247, 247, 247, 0.92),
      rgba(92, 92, 92, 0) 18%
    ),
    linear-gradient(90deg, #1a1a1a 0%, #747474 58%, #c8c8c8 100%);
  box-shadow: 0 20px 60px rgba(12, 24, 24, 0.08);
}

.lighting-copy {
  position: relative;
  z-index: 1;
  max-width: 380px;
  padding: 76px 0 0 58px;
  color: #fff;
}

.lighting-logo {
  display: inline-block;
  margin-bottom: 28px;
  letter-spacing: 0.24em;
  font-size: 1.8rem;
  font-weight: 800;
}

.lighting-logo small {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.35em;
}

.lighting-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
}

.lighting-copy .btn {
  margin-top: 28px;
}

.spotlight {
  position: absolute;
  right: 118px;
  top: 76px;
  width: 240px;
  height: 90px;
  border-radius: 50px;
  background: linear-gradient(180deg, #383838, #111);
  transform: rotate(-34deg);
  box-shadow: -24px 18px 40px rgba(0, 0, 0, 0.42);
}

.spotlight::before {
  content: "";
  position: absolute;
  left: -96px;
  top: 36px;
  width: 100px;
  height: 18px;
  background: #111;
}

.spotlight::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7d0c7 0%, #5b544e 54%, #222 86%);
}

.lighting-products {
  margin-top: 40px;
}

.lighting-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.lighting-head h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 18px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.08) 0%,
    rgba(10, 10, 10, 0.44) 100%
  );
}

.product-card span {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
}

.testimonials {
  background: #fff;
  text-align: center;
  padding-top: 92px;
  padding-bottom: 116px;
}

.testimonials .section-title {
  font-size: clamp(2.6rem, 4vw, 3.7rem);
}

.testimonial-shell {
  position: relative;
  max-width: 980px;
  margin: 44px auto 0;
  padding: 0 70px;
}

.testimonial-swiper {
  overflow: hidden;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 40px;
  min-height: 330px;
  padding: 38px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  background: #fff;
}

.testimonial-media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sand-soft);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(203, 149, 112, 0.34);
}

.play-button::before {
  content: "";
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #fff;
}

.testimonial-quote {
  text-align: left;
}

.testimonial-quote::before {
  content: "\201C";
  display: block;
  margin-bottom: 10px;
  color: rgba(17, 32, 49, 0.08);
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.7;
}

.testimonial-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  color: #182333;
}

.testimonial-meta {
  margin-top: 22px;
  color: #6a727b;
  font-size: 0.92rem;
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(16, 32, 51, 0.18);
  color: var(--forest);
  background: #fff;
}

.testimonial-nav::after {
  font-size: 16px;
  font-weight: 800;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-pagination {
  position: static;
  margin-top: 20px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 1;
  background: rgba(15, 75, 77, 0.2);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--forest);
}

.faq {
  background: var(--paper);
}

.faq-list {
  max-width: 940px;
  margin: 48px auto 0;
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--sand);
  box-shadow: 0 14px 36px rgba(12, 24, 24, 0.07);
}

.faq-item h3 {
  font-size: 1.08rem;
  color: var(--ink);
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.9);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(150px, 1fr));
  gap: 46px;
  align-items: start;
}

.footer-brand {
  max-width: 470px;
  min-width: 0;
}

.footer-brand .brand {
  margin-bottom: 22px;
  font-size: 2rem;
}

.socials {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
}

.socials a i,
.footer-col a i {
  display: block;
  line-height: 1;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 620px;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col {
  min-width: 0;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.45;
}

.footer-col a {
  width: 100%;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .nav {
    gap: 20px;
    font-size: 0.88rem;
  }

  .notes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid,
  .stats-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-shell,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-slide {
    min-height: 780px;
  }

  .site-header .container {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 6px;
    flex-wrap: wrap;
  }

  .hero-slide {
    padding-top: 160px;
  }

  .hero-controls {
    right: 24px;
    bottom: 28px;
  }

  .curated-collage {
    grid-template-columns: 1fr;
    width: min(540px, calc(100% - 48px));
    margin-bottom: -140px;
  }

  .curated-intro::before,
  .curated-intro::after {
    display: none;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-shell {
    padding: 0 50px;
  }

}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    padding: 14px 0;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-shell,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-slide {
    min-height: 690px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.6rem);
  }

  .curated {
    padding-top: 66px;
    padding-bottom: 88px;
  }

  .curated-collage {
    width: calc(100% - 32px);
    margin-top: 42px;
    margin-bottom: -110px;
  }

  .curated-card,
  .curated-collage {
    min-height: 220px;
  }

  .curated-card {
    min-height: 240px;
  }

  .services {
    padding-top: 180px;
  }

  .notes {
    padding-top: 150px;
  }

  .notes-grid,
  .stats-grid,
  .product-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .notes-foot {
    text-align: center;
  }

  .lighting-banner {
    min-height: 520px;
  }

  .services {
    padding-top: 72px;
  }

  .lighting-copy {
    padding: 42px 28px 0;
  }

  .spotlight {
    right: 18px;
    top: 250px;
    width: 180px;
    height: 68px;
  }

  .spotlight::before {
    left: -72px;
    width: 74px;
  }

  .testimonial-shell {
    padding: 0;
  }

  .testimonial-prev,
  .testimonial-next {
    display: none;
  }

  .testimonial-card {
    padding: 24px;
  }

  .decor-corners::before,
  .decor-corners::after {
    width: 82px;
    height: 82px;
  }

  .curated::before,
  .curated::after {
    width: 92px;
    height: 72px;
  }
}

/* Custom layout for the revised one-page website */
.site-header {
  background: rgba(9, 55, 57, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header .container {
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.nav-menu a {
  position: relative;
}

.nav-menu > a,
.nav-link-row > a {
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-link-row {
  display: contents;
}

.submenu-toggle {
  display: none;
}

.nav-menu > a:hover,
.nav-item:hover .nav-link-row > a {
  background: rgba(228, 176, 129, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.nav-menu:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.nav-item {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  display: grid;
  gap: 6px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 44px rgba(10, 25, 25, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
}

.dropdown-panel a:hover {
  background: #f7efe8;
  color: var(--forest);
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-shell,
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-slide {
  min-height: 820px;
}

.hero-slide {
  padding-top: 170px;
}

.hero-content {
  padding: 34px;
  background: rgba(9, 26, 28, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
}

.quick-overview {
  background: linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
}

.quick-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.overview-card,
.material-card,
.highlight-card,
.store-card {
  border: 1px solid rgba(15, 75, 77, 0.12);
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 24, 24, 0.06);
}

.overview-card {
  padding: 28px;
  border-radius: 22px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.overview-card h3,
.portfolio-head h3,
.store-item span,
.highlight-card h3,
.material-card h3 {
  color: var(--forest);
}

.overview-card h3,
.portfolio-head h3,
.highlight-card h3,
.material-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.overview-card p,
.material-card p,
.highlight-card p,
.store-item p,
.about-copy p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.left-heading {
  text-align: left;
}

.left-heading .section-copy {
  margin-left: 0;
}

.category-section {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.feature-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-size 0.35s ease;
}

.feature-card::before,
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 20, 0.16), rgba(6, 18, 20, 0.72));
  transition: background 0.35s ease;
}

.feature-card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 28px;
  color: #fff;
  transition: transform 0.35s ease;
}

.feature-card-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.feature-card-content p {
  margin-top: 10px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.85);
}

.materials-section {
  background: var(--paper);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.material-card {
  padding: 28px;
  border-radius: 22px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.store-section {
  background: linear-gradient(135deg, #0d4143 0%, #123f4f 100%);
}

.store-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.store-section .section-title,
.store-section .eyebrow {
  color: #fff;
}

.store-section .section-copy {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.82);
}

.store-card {
  padding: 32px;
  border-radius: 24px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.store-item + .store-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 75, 77, 0.12);
}

.store-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-item .btn {
  margin-top: 6px;
}

.store-item a:not(.btn),
.footer-col a,
.footer-col p,
.footer-copy {
  overflow-wrap: anywhere;
}

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.about-highlights {
  display: grid;
  gap: 18px;
}

.highlight-card {
  padding: 26px;
  border-radius: 22px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.portfolio-section {
  background: linear-gradient(180deg, #fff8f3 0%, #f7efe8 100%);
}

.portfolio-category + .portfolio-category {
  margin-top: 40px;
}

.portfolio-head {
  margin-bottom: 18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(12, 24, 24, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-size 0.35s ease;
}

.overview-card:hover,
.material-card:hover,
.highlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(203, 149, 112, 0.32);
  box-shadow: 0 24px 46px rgba(12, 24, 24, 0.12);
}

.material-card:hover {
  background: #fffaf6;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(12, 24, 24, 0.14);
}

.feature-card:hover,
.portfolio-card:hover {
  transform: translateY(-10px) scale(1.01);
  background-size: 108%;
  box-shadow: 0 28px 54px rgba(6, 18, 20, 0.22);
}

.feature-card:hover::before,
.portfolio-card:hover::before {
  background: linear-gradient(180deg, rgba(6, 18, 20, 0.08), rgba(6, 18, 20, 0.62));
}

.feature-card:hover .feature-card-content {
  transform: translateY(-6px);
}

.site-footer {
  background: #0c202c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
}

@media (max-width: 1100px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .quick-overview-grid,
  .feature-grid,
  .materials-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .site-header.is-menu-open .nav-menu,
  .site-header.is-menu-open .nav-actions {
    display: grid;
  }

  .nav-menu {
    order: 3;
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(10, 33, 34, 0.98);
    box-shadow: 0 22px 44px rgba(2, 11, 12, 0.28);
  }

  .nav-menu > a,
  .nav-item,
  .dropdown-panel a {
    width: 100%;
  }

  .nav-link-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 8px;
  }

  .nav-menu > a,
  .nav-link-row > a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .submenu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .submenu-toggle span {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.25s ease;
  }

  .nav-item.is-open .submenu-toggle span {
    transform: rotate(-135deg) translateX(-1px);
  }

  .nav-item:hover > a {
    transform: none;
  }

  .dropdown-panel {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px;
  }

  .nav-item.is-open .dropdown-panel {
    display: grid;
  }

  .dropdown-panel a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: 12px;
  }

  .nav-actions {
    order: 4;
    grid-template-columns: 1fr;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-shell,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-slide {
    min-height: 760px;
  }

  .hero-slide {
    padding-top: 190px;
    padding-bottom: 120px;
  }

  .hero-controls {
    right: 24px;
    bottom: 28px;
  }

  .quick-overview-grid,
  .feature-grid,
  .materials-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .portfolio-card {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    width: 176px;
  }

  .nav-menu {
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
  }

  .nav-menu > a,
  .nav-link-row > a,
  .dropdown-panel a {
    width: 100%;
  }

  .hero-shell,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-slide {
    min-height: 700px;
  }

  .hero-content {
    padding: 24px;
  }

  .hero-controls {
    left: 50%;
    right: auto;
    bottom: 20px;
    transform: translateX(-50%);
  }

  .quick-overview-grid,
  .feature-grid,
  .materials-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .portfolio-head h3,
  .overview-card h3,
  .highlight-card h3,
  .material-card h3,
  .feature-card-content h3 {
    word-break: break-word;
  }

  .feature-card,
  .portfolio-card {
    min-height: 240px;
  }

  .feature-card:hover,
  .portfolio-card:hover,
  .overview-card:hover,
  .material-card:hover,
  .highlight-card:hover,
  .store-card:hover {
    transform: none;
  }

  .store-card {
    padding: 24px;
  }

  .store-item .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 0;
  }

  .brand-logo {
    width: 150px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero-copy,
  .section-copy,
  .overview-card p,
  .material-card p,
  .about-copy p,
  .store-item p {
    font-size: 0.95rem;
  }

  .hero-controls {
    gap: 8px;
  }

  .hero-nav {
    width: 42px;
    height: 42px;
  }

  .hero-pagination {
    width: 42px !important;
    min-width: 42px;
    height: 42px;
  }
}
