:root {
  --ink: #1f1a16;
  --muted: #5d544c;
  --paper: #f6f1e8;
  --paper-strong: #efe4d2;
  --accent: #8c3f26;
  --accent-dark: #612914;
  --line: #d8c8b0;
  --card: #fffaf3;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 10%, #fff4de 0, transparent 28%),
    radial-gradient(circle at 95% 85%, #f8e4c6 0, transparent 34%),
    linear-gradient(180deg, var(--paper) 0%, #f3eadf 100%);
  line-height: 1.6;
}

.wrapper {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.top-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 0 10px;
}

.full-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-bottom: 1px solid var(--line);
}

.full-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.stack-sections {
  padding: 16px 0 38px;
}

.hero-action {
  padding: 14px 0 4px;
  display: flex;
  justify-content: center;
}

.stack-sections .card {
  margin-bottom: 14px;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(140, 63, 38, 0.09), rgba(255, 246, 231, 0.2));
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.back-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.back-link:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
}

.hero-content {
  padding: 28px 0 54px;
  max-width: 740px;
}

.label {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  margin: 10px 0 16px;
}

h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  margin: 0 0 12px;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(97, 41, 20, 0.23);
}

.btn-secondary {
  background: var(--card);
  border-color: var(--line);
  color: var(--ink);
}

.main-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0 34px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(77, 54, 40, 0.08);
}

.service-list {
  margin: 0;
  padding-left: 18px;
}

.sub-hero {
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(140, 63, 38, 0.12), rgba(243, 234, 223, 0.12));
}

.sub-hero h1 {
  margin: 8px 0 6px;
}

.callout {
  margin-bottom: 36px;
  text-align: center;
}

.collection-card {
  animation: riseIn 0.5s ease both;
}

.collection-card:nth-child(2) { animation-delay: 0.05s; }
.collection-card:nth-child(3) { animation-delay: 0.1s; }
.collection-card:nth-child(4) { animation-delay: 0.15s; }
.collection-card:nth-child(5) { animation-delay: 0.2s; }
.collection-card:nth-child(6) { animation-delay: 0.25s; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #efe4d3;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent);
}

@keyframes riseIn {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    right: 4%;
    top: 72px;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    min-width: 200px;
    box-shadow: 0 12px 20px rgba(65, 41, 28, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.2s ease;
  }

  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .full-hero {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
