:root {
  --bg: #fbf8f3;
  --paper: #ffffff;
  --ink: #161616;
  --muted: #6f6a62;
  --line: #e8dfd2;
  --gold: #b9975b;
  --soft-gold: #efe4d0;
  --cream: #f6efe4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 15px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 48px;
  align-items: center;
  padding: 72px 6vw;
  background:
    radial-gradient(circle at 80% 20%, rgba(185,151,91,0.18), transparent 30%),
    linear-gradient(135deg, #fbf8f3 0%, #f4eadb 100%);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 12px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(42px, 6vw, 82px);
  letter-spacing: -0.05em;
  max-width: 900px;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 24px;
}

.hero-text {
  max-width: 720px;
  font-size: 19px;
  color: var(--muted);
  margin: 24px 0 0;
}

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

.btn {
  display: inline-flex;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--ink);
}

.btn.primary {
  background: var(--ink);
  color: white;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 22px 70px rgba(35, 28, 16, 0.08);
}

.hero-card span {
  display: block;
  font-size: 32px;
  color: var(--muted);
}

.hero-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  margin-top: 6px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: 90px 6vw;
}

.soft {
  background: var(--cream);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.two-column p,
.section-heading p,
.brand-info p,
.service-card p,
.shop-card p,
.contact p {
  color: var(--muted);
}

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

.brand-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 24px;
}

.brand-image {
  min-height: 360px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8), transparent 24%),
    linear-gradient(135deg, #d7c3a2, #f8efe4 45%, #c8a86f);
  display: flex;
  align-items: end;
  padding: 28px;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.brand-info {
  padding: 22px 16px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 800;
}

.grid,
.shop-grid,
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.shop-card,
.placeholder,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}

.service-card {
  min-height: 220px;
}

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

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(35, 28, 16, 0.08);
}

.shop-card span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.shop-card strong {
  font-size: 21px;
  display: block;
}

.note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}

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

.placeholder {
  min-height: 240px;
  display: flex;
  align-items: end;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.8), rgba(239,228,208,0.8)),
    var(--paper);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-card p {
  margin: 0 0 12px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero,
  .two-column,
  .brand-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .grid,
  .shop-grid,
  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .section {
    padding: 64px 6vw;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
  }
}
