:root {
  --bg: #f7f3ec;
  --bg-alt: #efe5d8;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffaf3;
  --text: #2e2925;
  --muted: #6c655e;
  --line: rgba(82, 72, 62, 0.1);
  --accent: #70866b;
  --accent-2: #c6b39d;
  --accent-3: #8b694f;
  --chip: rgba(112, 134, 107, 0.12);
  --shadow: 0 20px 50px rgba(63, 52, 42, 0.1);
  --radius: 26px;
  --radius-lg: 34px;
  --max: 1180px;
}

body[data-theme="rose"] {
  --bg: #fbf4ef;
  --bg-alt: #f5e7df;
  --surface: rgba(255, 250, 246, 0.84);
  --surface-strong: #fff8f4;
  --text: #352a28;
  --muted: #786563;
  --line: rgba(108, 77, 73, 0.11);
  --accent: #c38f91;
  --accent-2: #ddb8a5;
  --accent-3: #8f6b54;
  --chip: rgba(195, 143, 145, 0.14);
}

body[data-theme="luxe"] {
  --bg: #f4efe7;
  --bg-alt: #e9dfd0;
  --surface: rgba(255, 250, 241, 0.84);
  --surface-strong: #fff9f0;
  --text: #2f241f;
  --muted: #6b5b53;
  --line: rgba(88, 66, 52, 0.12);
  --accent: #756847;
  --accent-2: #b69058;
  --accent-3: #7d4b43;
  --chip: rgba(182, 144, 88, 0.14);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(
      circle at top left,
      color-mix(in srgb, var(--accent) 14%, transparent),
      transparent 25%
    ),
    radial-gradient(
      circle at top right,
      color-mix(in srgb, var(--accent-2) 20%, transparent),
      transparent 24%
    ),
    linear-gradient(180deg, var(--bg) 0%, #fbf8f3 40%, var(--bg) 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-header {
  padding-bottom: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo img {
  height: 80px; /* adjust based on header */
  width: auto;
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
}

.hero {
  display: grid;
  gap: 1.8rem;
  padding: 2.5rem 0 1rem;
}

.hero-copy-centered {
  text-align: center;
  max-width: 54rem;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.1rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.7rem;
}

.hero-text,
.copy-stack p,
.service-card p,
.catalogs-copy p,
.process-item p,
.footer-card p,
.section-note {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text-wide {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.catalog-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.centered-actions {
  justify-content: center;
}

.hero-actions {
  margin: 1.75rem 0 0;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.full {
  width: 100%;
}

.service-card,
.catalog-preview-card,
.footer-card,
.process-item,
.hero-banner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-banner-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-banner-card img,
.catalog-preview-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-card img {
  aspect-ratio: 16 / 8.8;
}

.hero-carousel {
  position: relative;
}

.hero-carousel-track {
  position: relative;
  min-height: clamp(320px, 55vw, 650px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8.8;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(53, 42, 40, 0.28);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.hero-carousel-btn.prev {
  left: 1rem;
}

.hero-carousel-btn.next {
  right: 1rem;
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 2;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
}

.section {
  padding: 4.5rem 0;
}

.split-section,
.catalogs-shell,
.process-shell,
.section-head {
  display: grid;
  gap: 1.5rem;
}

.split-section,
.catalogs-shell,
.process-shell {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 0.5rem;
}

.section-head {
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-note {
  max-width: 26rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-grid-text {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  border-radius: var(--radius-lg);
}

.service-card-text {
  min-height: 172px;
  display: flex;
  align-items: flex-start;
}

.service-copy {
  padding: 1.35rem 1.35rem 1.45rem;
}

.service-copy h3 {
  font-size: 1.45rem;
}

.service-index {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--chip);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.catalogs-section {
  background: linear-gradient(
    180deg,
    transparent,
    color-mix(in srgb, var(--accent-2) 9%, transparent)
  );
}

.catalog-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-preview-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.catalog-preview-card img {
  height: 330px;
}

.catalog-preview-copy {
  padding: 1.1rem 1.2rem 1.3rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: var(--chip);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.soft-chip {
  color: var(--accent);
}

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

.unified-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.gallery-card.wide {
  grid-column: span 2;
  min-height: 340px;
}

.process-list {
  display: grid;
  gap: 0.9rem;
}

.process-item {
  border-radius: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  align-items: start;
}

.process-item span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  font-weight: 700;
}

.process-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.site-footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

.footer-card {
  border-radius: var(--radius);
  padding: 1.4rem;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .split-section,
  .catalogs-shell,
  .process-shell,
  .footer-shell,
  .section-head,
  .services-grid,
  .catalog-preview-grid,
  .unified-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.wide {
    grid-column: auto;
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 96px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
    z-index: 20;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 1.5rem;
  }

  h1 {
    font-size: 2.7rem;
  }
  h2 {
    font-size: 2.1rem;
  }

  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }
}

@media (max-width: 760px) {
  .hero-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .hero-carousel-btn.prev {
    left: 0.75rem;
  }

  .hero-carousel-btn.next {
    right: 0.75rem;
  }

  .hero-carousel-dots {
    bottom: 0.8rem;
  }
}

@media (max-width: 760px) {
  .logo img {
    height: 50px; /* adjust as needed */
  }
}
