:root {
  --bg: #f6f0e9;
  --bg-soft: #fffdf9;
  --surface: #fffaf5;
  --surface-strong: #f0e1d2;
  --surface-dark: #2a201a;
  --text: #1f1713;
  --muted: #63554d;
  --accent: #8f6648;
  --accent-soft: #e7d4c1;
  --border: rgba(31, 23, 19, 0.1);
  --shadow: 0 16px 34px rgba(48, 32, 22, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

img {
  max-width: 100%;
}

.custom-nav {
  backdrop-filter: blur(12px);
  background: rgba(255, 252, 247, 0.92);
  border-bottom: 1px solid rgba(31, 23, 19, 0.08);
  padding: 0.6rem 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 1rem;
}

.navbar-logo {
  height: 52px;
  width: auto;
  display: block;
}

.nav-link {
  color: var(--text);
  font-weight: 600;
}

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

.hero-section {
  padding: 7.2rem 0 4.4rem;
  background: linear-gradient(180deg, #fbf6f0 0%, #f2e8dc 100%);
  border-bottom: 1px solid rgba(31, 23, 19, 0.06);
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #835f47;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.hero-section h1 {
  font-size: clamp(2.4rem, 4.7vw, 4.8rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.04rem;
  max-width: 38rem;
}

.hero-actions .btn {
  min-width: 180px;
}

.hero-visual {
  position: relative;
}

.hero-main-image,
.product-image,
.modal-body img,
.section-image {
  width: 100%;
  object-fit: cover;
}

.hero-main-image {
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-height: 520px;
}

.floating-card {
  position: absolute;
  right: -0.6rem;
  bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(48, 32, 22, 0.12);
  border-radius: 1.15rem;
  padding: 0.95rem 1.05rem;
  max-width: 260px;
}

.floating-card span,
.floating-card p {
  display: block;
}

.floating-card span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: #7c6254;
  font-weight: 700;
}

.floating-card strong {
  font-size: 1.15rem;
  display: block;
  margin: 0.25rem 0 0.35rem;
}

.floating-card p {
  margin: 0;
  font-size: 0.92rem;
}

.meta-box,
.product-card,
.contact-card,
.contact-panel,
.faq-item {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(48, 32, 22, 0.05);
}

.meta-box {
  padding: 1rem;
  border-radius: 1rem;
  height: 100%;
}

.meta-box strong,
.contact-item strong {
  display: block;
  margin-bottom: 0.28rem;
}

.meta-box span,
.contact-item span,
.contact-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-padding,
.highlight-section,
.contact-section {
  padding: 4.3rem 0;
}

.products-section {
  background: var(--bg-soft);
}

.highlight-section {
  background: var(--surface-strong);
  border-top: 1px solid rgba(31, 23, 19, 0.06);
  border-bottom: 1px solid rgba(31, 23, 19, 0.06);
}

.contact-section {
  background: linear-gradient(180deg, #fffaf6 0%, #f4ece3 100%);
}

.section-heading h2 {
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1.02;
  margin-bottom: 0.75rem;
}

.section-heading p {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.product-card,
.contact-card,
.contact-panel {
  border-radius: 1.35rem;
  overflow: hidden;
}

.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(48, 32, 22, 0.1);
}

.product-image-wrap {
  background: var(--surface);
  border-bottom: 1px solid rgba(31, 23, 19, 0.06);
}

.compact-image-wrap {
  padding: 0;
}

.product-image {
  height: 230px;
}

.product-body {
  padding: 1.4rem;
}

.compact-body h3 {
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.product-tag {
  display: inline-flex;
  background: var(--accent-soft);
  color: #644834;
  padding: 0.34rem 0.76rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.72rem;
}

.collection-faq {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  font-weight: 700;
  font-size: 1.02rem;
  box-shadow: none;
  padding: 1rem 1.1rem;
}

.accordion-button:not(.collapsed) {
  color: var(--text);
  background: #fbf6f0;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(143, 102, 72, 0.12);
}

.accordion-body {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.97);
  padding: 0.2rem 1.1rem 1.1rem;
}

.contact-panel,
.contact-card,
.faq-item {
  padding: 1.2rem;
}

.contact-panel,
.contact-card {
  height: 100%;
}

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

.contact-item {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(31, 23, 19, 0.08);
}

.contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.form-label {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.form-control {
  border-radius: 1rem;
  border: 1px solid rgba(31, 23, 19, 0.12);
  padding: 0.9rem 1rem;
  color: var(--text);
  background: #fffdfb;
}

.form-control:focus {
  border-color: rgba(143, 102, 72, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(143, 102, 72, 0.12);
}

.btn {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:focus,
.btn:active:focus,
.btn.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(143, 102, 72, 0.14);
}

.btn-dark {
  background: #1f1713;
  border-color: #1f1713;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active {
  background: #3a2b24;
  border-color: #3a2b24;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  background: #3a2b24;
  border-color: #3a2b24;
}

.btn-outline-dark {
  border-color: rgba(31, 23, 19, 0.6);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active {
  background: #1f1713;
  border-color: #1f1713;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  background: #1f1713;
  border-color: #1f1713;
}

.site-footer {
  padding: 2.8rem 0;
  background: var(--surface-dark);
  color: #f7efe8;
}

.site-footer p {
  color: rgba(247, 239, 232, 0.76);
  margin: 0;
}

.site-footer h3 {
  font-size: 2rem;
  margin-bottom: 0.45rem;
}

.modal-content {
  background: #fffaf6;
}

.modal-body img,
.section-image {
  border: 1px solid var(--border);
}

.site-footer .btn-outline-light {
  border-width: 1px;
}

@media (max-width: 991.98px) {
  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .hero-section {
    padding-top: 6.6rem;
    padding-bottom: 3.5rem;
  }

  .navbar-logo {
    height: 46px;
  }

  .section-padding,
  .highlight-section,
  .contact-section {
    padding: 3.7rem 0;
  }
}

@media (max-width: 767.98px) {
  .navbar-logo {
    height: 42px;
  }

  .hero-section h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .section-padding,
  .highlight-section,
  .contact-section {
    padding: 3.1rem 0;
  }

  .product-image {
    height: 210px;
  }

  .product-body,
  .contact-card,
  .contact-panel,
  .meta-box,
  .faq-item {
    padding: 1rem;
  }

  .contact-note {
    display: block;
    width: 100%;
  }
}
