:root {
  --bg: #f7efe7;
  --surface: rgba(255, 252, 247, 0.9);
  --surface-strong: #fffaf4;
  --text: #2f241f;
  --muted: #6d6057;
  --accent: #cf6f4f;
  --accent-dark: #8f4a34;
  --accent-soft: #f1cfb8;
  --secondary: #3f7a6c;
  --secondary-soft: #d9e9e2;
  --line: rgba(85, 54, 40, 0.12);
  --shadow: 0 24px 60px rgba(87, 51, 35, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 194, 158, 0.52), transparent 28%),
    radial-gradient(circle at bottom right, rgba(94, 117, 104, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf6ef 0%, #f1e8dd 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  width: 420px;
  height: 420px;
  top: -130px;
  right: -120px;
  background: rgba(184, 103, 75, 0.12);
}

.page-shell::after {
  width: 300px;
  height: 300px;
  bottom: 12%;
  left: -120px;
  background: rgba(219, 229, 222, 0.8);
}

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

.site-header {
  padding: 24px 0 8px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 20px;
  background: rgba(255, 250, 244, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), #446052);
  color: #fff;
  font-weight: 700;
}

.hero,
.page-hero {
  padding: 72px 0 36px;
}

.hero-layout,
.page-hero-layout,
.about-layout,
.contact-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.page-hero-layout,
.about-layout,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.86);
  color: var(--accent-dark);
  border: 1px solid rgba(201, 111, 74, 0.16);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
}

.hero p,
.page-hero p,
.section-copy,
.copy-block p,
.contact-card p,
.info-item p,
.product-card p,
.feature-card p,
.metric p,
.timeline-item p,
.testimonial p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn {
  background: linear-gradient(135deg, var(--accent), #d08962);
  color: #fff;
  box-shadow: 0 16px 35px rgba(184, 103, 75, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn:hover,
.btn-secondary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.hero-card,
.glass-card,
.feature-card,
.product-card,
.testimonial,
.contact-card,
.info-item,
.timeline-item,
.metric,
.newsletter {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 26px;
}

.visual-panel {
  min-height: 420px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
}

.visual-main,
.visual-stack > div,
.product-visual {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.visual-main {
  padding: 28px;
  background: linear-gradient(160deg, #413028 0%, #7f4431 100%);
  color: #fff7f0;
}

.visual-main::after,
.visual-stack > div::after,
.product-visual::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.visual-stack > div {
  padding: 22px;
  background: linear-gradient(140deg, #fff9f4 0%, #ebe2d4 100%);
}

.stat-row,
.feature-grid,
.product-grid,
.info-grid,
.metrics-grid,
.testimonials,
.timeline,
.contact-info-list {
  display: grid;
  gap: 20px;
}

.stat-row,
.metrics-grid,
.testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.product-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric,
.feature-card,
.product-card,
.testimonial,
.info-item,
.timeline-item,
.contact-card,
.newsletter {
  padding: 24px;
}

.metric strong,
.price,
.section-title,
.feature-card h3,
.product-card h3,
.testimonial strong,
.info-item strong,
.timeline-item strong,
.contact-card h2,
.copy-block h2 {
  display: block;
}

.metric strong,
.price {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--accent-dark);
}

.section {
  padding: 36px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-card span,
.product-badge,
.info-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(184, 103, 75, 0.12);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.product-grid {
  align-items: stretch;
}

.product-visual {
  min-height: 220px;
  margin-bottom: 18px;
  padding: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  background: linear-gradient(145deg, #5c382c, #b8674b);
}

.product-card:nth-child(2) .product-visual {
  background: linear-gradient(145deg, #9d6d4a, #e3b58f);
}

.product-card:nth-child(3) .product-visual,
.product-card:nth-child(6) .product-visual {
  background: linear-gradient(145deg, #465a53, #7f9a8b);
}

.product-card:nth-child(4) .product-visual,
.product-card:nth-child(5) .product-visual {
  background: linear-gradient(145deg, #6a4d38, #8b6b56);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.product-card p {
  margin: 0;
}

.product-card .btn-secondary {
  min-height: 44px;
  padding: 0 18px;
}

.product-visual-copy {
  max-width: 60%;
}

.product-shape {
  position: relative;
  width: 110px;
  height: 110px;
  flex: 0 0 auto;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.08);
}

.product-shape::before,
.product-shape::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
}

.shape-lamp::before {
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 40% 40%;
}

.shape-lamp::after {
  bottom: 16px;
  width: 6px;
  height: 44px;
  border-radius: 999px;
  box-shadow: 0 30px 0 12px rgba(255, 255, 255, 0.92);
}

.shape-tray::before {
  bottom: 24px;
  width: 74px;
  height: 40px;
  border-radius: 18px;
}

.shape-tray::after {
  top: 24px;
  width: 30px;
  height: 8px;
  border-radius: 999px;
}

.shape-vase::before {
  top: 18px;
  width: 32px;
  height: 18px;
  border-radius: 10px;
}

.shape-vase::after {
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 40% 40% 46% 46%;
}

.shape-plate::before {
  top: 22px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
}

.shape-plate::after {
  top: 37px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(106, 77, 56, 0.75);
}

.shape-basket::before {
  bottom: 22px;
  width: 68px;
  height: 46px;
  border-radius: 0 0 18px 18px;
}

.shape-basket::after {
  top: 18px;
  width: 42px;
  height: 24px;
  border-radius: 24px 24px 0 0;
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-bottom: 0;
  background: transparent;
}

.shape-gift::before {
  top: 24px;
  width: 66px;
  height: 50px;
  border-radius: 12px;
}

.shape-gift::after {
  top: 14px;
  width: 18px;
  height: 70px;
  border-radius: 999px;
  box-shadow: -18px 8px 0 -4px rgba(255, 255, 255, 0.92), 18px 8px 0 -4px rgba(255, 255, 255, 0.92);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(85, 54, 40, 0.1);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(94, 117, 104, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-highlight {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.catalog-note {
  background: linear-gradient(145deg, rgba(94, 117, 104, 0.12), rgba(184, 103, 75, 0.08));
}

.cart-panel {
  display: grid;
  gap: 18px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(85, 54, 40, 0.08);
}

.cart-item strong {
  display: block;
  font-size: 1rem;
}

.cart-item small {
  color: var(--muted);
}

.cart-item button {
  border: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(207, 111, 79, 0.14);
  color: var(--accent-dark);
  font-weight: 700;
  cursor: pointer;
}

.cart-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(85, 54, 40, 0.1);
}

.cart-total {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--accent-dark);
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
}

.add-to-cart {
  border: 0;
  cursor: pointer;
}

.copy-block,
.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(85, 54, 40, 0.12);
  background: rgba(255, 255, 255, 0.74);
  font: inherit;
  color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(184, 103, 75, 0.22);
  border-color: rgba(184, 103, 75, 0.3);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: min(100%, 500px);
}

.newsletter-form input {
  flex: 1;
}

.site-footer {
  padding: 34px 0 42px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 960px) {
  .hero-layout,
  .page-hero-layout,
  .about-layout,
  .contact-layout,
  .catalog-highlight,
  .feature-grid,
  .product-grid,
  .info-grid,
  .metrics-grid,
  .testimonials,
  .timeline,
  .stat-row,
  .field-row,
  .visual-panel {
    grid-template-columns: 1fr;
  }

  .nav-bar,
  .section-heading,
  .newsletter,
  .footer-bar {
    border-radius: 28px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links,
  .footer-links {
    justify-content: flex-start;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .product-visual-copy {
    max-width: none;
  }
}

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

  .hero,
  .page-hero,
  .section,
  .site-footer {
    padding-top: 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .nav-bar {
    padding: 18px;
  }

  .brand-mark {
    font-size: 1.7rem;
  }
}

.page-shell::before {
  background: rgba(196, 134, 115, 0.08);
}

.page-shell::after {
  background: rgba(228, 235, 230, 0.9);
}

.nav-bar,
.hero-card,
.glass-card,
.feature-card,
.product-card,
.testimonial,
.contact-card,
.info-item,
.timeline-item,
.metric,
.newsletter {
  box-shadow: 0 10px 24px rgba(87, 51, 35, 0.06);
}

.hero-image-frame,
.product-visual {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.hero-image-frame {
  min-height: 260px;
  background: linear-gradient(145deg, #f3ece7, #e7ddd6);
}

.hero-image-frame img,
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-frame img {
  min-height: 260px;
}

.product-visual {
  color: var(--text);
  background: linear-gradient(145deg, #f1ebe7, #e4ddd8);
}

.product-card:nth-child(2) .product-visual {
  background: linear-gradient(145deg, #f0ede7, #e0ddd4);
}

.product-card:nth-child(3) .product-visual,
.product-card:nth-child(6) .product-visual {
  background: linear-gradient(145deg, #edf0ec, #dde4df);
}

.product-card:nth-child(4) .product-visual,
.product-card:nth-child(5) .product-visual {
  background: linear-gradient(145deg, #f4efea, #e7ddd5);
}

.product-visual-copy {
  max-width: 65%;
  position: relative;
  z-index: 1;
}

.product-meta {
  border-top: 1px solid rgba(93, 67, 57, 0.08);
}

.tag-list span,
.feature-card span,
.product-badge,
.info-label {
  background: rgba(196, 134, 115, 0.14);
}

.catalog-note {
  background: linear-gradient(145deg, rgba(138, 155, 143, 0.1), rgba(196, 134, 115, 0.08));
}

.btn {
  background: linear-gradient(135deg, var(--accent), #d49c8d);
  box-shadow: 0 12px 24px rgba(196, 134, 115, 0.18);
}

.nav-cta {
  background: linear-gradient(135deg, var(--secondary), #6f8377);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
}