*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #fafaf8;
  --cream: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gray: #6b6b6b;
  --light-gray: #e8e4dc;
  --text: #1a1a1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-cta {
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  letter-spacing: 0.5px;
}

.nav-cta:hover { background: var(--gold-light); }

/* HERO */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 35%);
}

.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  margin-bottom: 28px;
  width: fit-content;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 16px;
  color: #bbb;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 36px;
  transition: all 0.3s ease;
  width: fit-content;
}

.cta-btn:hover { background: var(--gold-light); gap: 20px; }

/* STRIP */
.strip {
  background: var(--gold);
  color: var(--black);
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  gap: 48px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-wrap: wrap;
}

/* SECTIONS */
.section {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--text);
}

h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 40px;
  color: var(--text);
}

h3:first-of-type { margin-top: 0; }

p { margin-bottom: 16px; color: #444; }

ul { padding-left: 20px; margin-bottom: 16px; color: #444; }
ul li { margin-bottom: 8px; }

/* PHOTO + TEXT LAYOUT */
.photo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
}

.photo-block.reverse { direction: rtl; }
.photo-block.reverse > * { direction: ltr; }

.photo-block img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.photo-block .photo-wrap {
  width: 100%;
}

.photo-block .photo-wrap img {
  height: 340px;
}

.photo-block figcaption {
  font-size: 12px;
  color: var(--gray);
  margin-top: 8px;
  font-style: italic;
}

/* FULL WIDTH PHOTO */
.photo-full {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  margin: 40px 0;
}

/* WATERMARK — disabled. Photos already have a baked-in © Trove Solutions LLC watermark. */
.photo-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.photo-wrap img {
  display: block;
  width: 100%;
}

/* BRAND LINKS */
.brand-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
}

.brand-links li { margin: 0; }

.brand-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--light-gray);
  width: 100%;
  transition: gap 0.2s;
}

.brand-links a:hover { gap: 16px; }
.brand-links a::after { content: '→'; color: var(--gold); }

/* WALL GRID */
.wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  margin-top: 32px;
}

.wall-item {
  background: var(--white);
  padding: 28px 24px;
}

.wall-item h3 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 8px;
}

.wall-item p {
  font-size: 13px;
  margin: 0;
  color: var(--gray);
}

/* LIMITATION BOX */
.limitation {
  background: #fffbf0;
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
}

.limitation h3 { margin-top: 0; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  border: 0.5px solid var(--light-gray);
  padding: 28px;
  background: var(--white);
}

.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #444; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 12px; color: var(--gray); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

/* PRICING */
.pricing-box {
  background: var(--black);
  color: var(--white);
  padding: 60px;
  margin: 60px 0;
}

.pricing-box h2 { color: var(--white); margin-bottom: 8px; }
.price-big { font-family: 'Playfair Display', serif; font-size: 64px; color: var(--gold); line-height: 1; margin: 16px 0 8px; }
.price-desc { color: #aaa; font-size: 14px; margin-bottom: 24px; }
.price-addon { font-size: 15px; color: #ccc; margin-bottom: 8px; }

/* SERVICE AREA */
.area-section { background: var(--cream); padding: 60px; }
.area-section h2 { margin-bottom: 16px; }

/* CONFIGURATOR SECTION */
.cfg-section-wrap { padding: 60px; background: var(--white); border-top: 1px solid var(--light-gray); }

/* FOOTER */
footer {
  background: var(--black);
  color: #555;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

footer a { color: var(--gold); text-decoration: none; }

/* CHILD PAGE HERO */
.page-hero {
  background: var(--black);
  padding: 80px 60px 60px;
}

.page-hero h1 { font-size: clamp(28px, 3.5vw, 48px); }
.page-hero p { color: #aaa; max-width: 600px; margin-top: 16px; }
.breadcrumb { font-size: 12px; color: #666; margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* DIVIDER */
hr.section-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 24px; }
  .hero-right { height: 55vw; }
  .section { padding: 48px 24px; }
  .photo-block { grid-template-columns: 1fr; }
  .photo-block.reverse { direction: ltr; }
  .pricing-box { padding: 40px 24px; }
  .area-section { padding: 40px 24px; }
  .cfg-section-wrap { padding: 40px 24px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .strip { gap: 16px; font-size: 11px; padding: 12px 16px; }
  .page-hero { padding: 60px 24px 40px; }
}
