:root {
  --ink: #14231f;
  --cream: #faf7f0;
  --brass: #a9803f;
  --brass-dark: #8a6830;
  --line: rgba(20, 35, 31, 0.12);
  --muted: rgba(20, 35, 31, 0.65);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 240, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.header-cta {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Hero */
.hero {
  padding: 120px 0 100px;
}

.hero-inner {
  max-width: 720px;
}

.eyebrow {
  color: var(--brass-dark);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.btn-primary:hover { background: var(--brass-dark); }

/* Expertise */
.expertise {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.expertise h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  max-width: 640px;
  margin-bottom: 48px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.expertise-card {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.card-index {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--brass-dark);
  margin-bottom: 12px;
}

.expertise-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

/* Portfolio */
.portfolio {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.portfolio h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  max-width: 640px;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Stores */
.stores {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.stores h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 28px;
}

.store-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.store-links a {
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

.store-links a:hover { color: var(--brass-dark); border-color: var(--brass-dark); }

/* Contact */
.contact {
  border-top: 1px solid var(--line);
  padding: 88px 0 0;
  background: var(--ink);
  color: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
}

.contact h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.contact-copy p {
  color: rgba(250, 247, 240, 0.75);
  max-width: 480px;
  margin: 0 0 14px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 500;
}

.contact-details a:hover { color: var(--brass); }

.contact-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Footer */
.site-footer {
  padding: 24px 0;
  background: var(--ink);
  color: rgba(250, 247, 240, 0.55);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 760px) {
  .hero { padding: 80px 0 64px; }
  .expertise-grid { grid-template-columns: 1fr; gap: 32px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; padding-bottom: 40px; }
}
