:root {
  --bg: #0c0c0f;
  --bg-soft: #121217;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text: #f5f1e8;
  --muted: #bbb5a7;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #c6a76a;
  --accent-2: #f0ddba;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #09090c 0%, #111116 60%, #0d0d10 100%);
  color: var(--text);
}

h1, h2, h3, h4, h5, h6, .brand-mark {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

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

a {
  text-decoration: none;
}

.section-space {
  padding: 100px 0;
}

.topbar {
  background: #08080b;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.topbar a,
.footer-links a,
.social-mini a,
.social-links a {
  color: var(--muted);
  transition: 0.3s ease;
}

.topbar a:hover,
.footer-links a:hover,
.social-mini a:hover,
.social-links a:hover {
  color: var(--accent-2);
}

.glass-nav {
  background: rgba(9, 9, 12, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
}

.navbar .nav-link {
  color: rgba(245, 241, 232, 0.85);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
}

.btn-brand {
  background: linear-gradient(135deg, var(--accent), #a78447);
  color: #111;
  border: none;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(198, 167, 106, 0.2);
}

.btn-brand:hover {
  background: linear-gradient(135deg, #d5b57a, #b18e50);
  color: #111;
}

.btn-outline-light {
  border-radius: 999px;
}

.favorites-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  margin-left: 6px;
  padding: 0 6px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
}

.hero-title {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.hero-text,
.section-heading p,
.statement-card p,
.cta-card p,
.value-card p,
.process-card p,
.design-body p,
.dimension-section p,
.form-section p,
.footer-section p,
li,
.form-label,
.form-check-label {
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-image,
.section-image {
  border-radius: 32px;
  min-height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -20px;
  bottom: 30px;
  max-width: 280px;
  background: rgba(10, 10, 12, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem 1.1rem;
}

.floating-note h6 {
  color: var(--accent-2);
  font-size: 1.15rem;
}

.stat-card,
.value-card,
.process-card,
.statement-card,
.cta-card,
.form-card,
.favorites-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1rem;
  height: 100%;
}

.stat-card strong {
  display: block;
  font-size: 1rem;
  color: var(--accent-2);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.value-card,
.process-card {
  padding: 1.6rem;
}

.value-card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.value-card h3,
.process-card h3,
.design-body h3,
.favorites-panel h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.6rem;
  font-size: 1.7rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.dimension-section h2,
.form-section h2,
.statement-card h2,
.cta-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-top: 0.7rem;
}

.design-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.design-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.design-media {
  position: relative;
  overflow: hidden;
}

.design-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.design-card:hover .design-media img {
  transform: scale(1.06);
}

.design-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.15));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
  opacity: 0;
  transition: 0.35s ease;
}

.design-card:hover .design-overlay {
  opacity: 1;
}

.design-body {
  padding: 1.2rem;
}

.tag-pill {
  white-space: nowrap;
  border: 1px solid rgba(198, 167, 106, 0.3);
  background: rgba(198, 167, 106, 0.08);
  color: var(--accent-2);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.feature-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 0.85rem;
}

.feature-list i,
.process-number {
  color: var(--accent);
}

.process-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.process-note {
  color: var(--accent-2);
}

.form-card,
.statement-card,
.cta-card {
  padding: 2rem;
}

.form-control,
.form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: rgba(198, 167, 106, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(198, 167, 106, 0.15);
}

.form-control::placeholder {
  color: #8f8a7d;
}

.form-select option {
  color: #111;
}

.form-message {
  color: var(--accent-2);
}

.favorites-panel {
  padding: 1.4rem;
}

.favorite-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.favorite-item:last-child {
  border-bottom: none;
}

.favorite-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
  font-family: 'Inter', sans-serif;
}

.favorite-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.floating-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #a78447);
  color: #111;
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.footer-section {
  background: #08080b;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-block;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-divider {
  border-color: var(--line);
}

.custom-modal {
  background: #121217;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--text);
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 80px 0;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .hero-image,
  .section-image {
    min-height: 320px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    line-height: 1.02;
  }

  .design-overlay {
    opacity: 1;
    align-items: end;
  }

  .design-overlay .btn {
    font-size: 0.75rem;
    padding: 0.45rem 0.7rem;
  }

  .form-card,
  .statement-card,
  .cta-card,
  .favorites-panel {
    padding: 1.3rem;
  }
}
