:root {
  --bg: #f8f4ee;
  --surface: #fffdf9;
  --surface-soft: #f3ece4;
  --blush: #ead8d6;
  --blue: #aab7c4;
  --taupe: #d8cbbf;
  --gold: #b99a63;
  --text: #3f3835;
  --muted: #746a64;
  --border: rgba(63, 56, 53, 0.12);
  --shadow: 0 24px 60px rgba(78, 66, 58, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), transparent 30%),
    linear-gradient(180deg, #fbf8f4 0%, #f8f4ee 100%);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 244, 238, 0.88);
  border-bottom: 1px solid rgba(63, 56, 53, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

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

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
}

.brand-tag {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.nav a {
  font-size: 0.96rem;
  color: var(--muted);
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 18px;
}

h1 { font-size: clamp(3rem, 8vw, 5.7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.hero p,
.section-copy,
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 720px;
}

.hero-art,
.panel,
.card,
.post-card,
.quote-card,
.contact-card,
.gallery-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-art {
  min-height: 520px;
  border-radius: 32px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(234,216,214,0.85), rgba(255,253,249,0.95) 45%, rgba(170,183,196,0.38)),
    #fff;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.75;
}

.hero-art::before {
  width: 280px;
  height: 280px;
  right: -40px;
  top: -30px;
  background: radial-gradient(circle, rgba(255,255,255,0.75), rgba(255,255,255,0));
}

.hero-art::after {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(185,154,99,0.22), rgba(185,154,99,0));
}

.art-frame {
  height: 100%;
  min-height: 448px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.65);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.25));
}

.art-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  max-width: 300px;
}

.art-meta {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--text);
  color: #fff;
}

.button.secondary {
  border-color: rgba(63, 56, 53, 0.18);
  background: rgba(255,255,255,0.58);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: rgba(255,255,255,0.45);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.grid-4,
.grid-3 {
  display: grid;
  gap: 24px;
}

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

.card,
.post-card,
.panel,
.contact-card,
.gallery-card,
.quote-card {
  border-radius: 28px;
  padding: 28px;
}

.card .kicker,
.post-card .kicker,
.panel .kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.card p,
.post-card p,
.panel p,
.contact-card p,
.gallery-card p,
.quote-card p,
li {
  color: var(--muted);
}

.inline-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(185,154,99,0.7);
  text-underline-offset: 4px;
}

.feature-list,
.simple-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.gallery-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-tone-1 {
  background: linear-gradient(180deg, rgba(170,183,196,0.2), rgba(255,255,255,0.9)), #fff;
}
.gallery-tone-2 {
  background: linear-gradient(180deg, rgba(234,216,214,0.28), rgba(255,255,255,0.9)), #fff;
}
.gallery-tone-3 {
  background: linear-gradient(180deg, rgba(216,203,191,0.28), rgba(255,255,255,0.9)), #fff;
}

.quote-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(243,236,228,0.8));
}

blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.25;
}

.meta {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  padding: 92px 0 46px;
}

.page-title {
  max-width: 880px;
}

.split-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.footer {
  padding: 34px 0 50px;
  border-top: 1px solid rgba(63, 56, 53, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .grid-4,
  .grid-3,
  .split-hero {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-wrap,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero,
  .section,
  .page-hero {
    padding-top: 70px;
    padding-bottom: 56px;
  }
  .hero-grid,
  .two-col,
  .grid-4,
  .grid-3,
  .split-hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 360px;
  }
  .art-frame {
    min-height: 300px;
  }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.35rem; }
}
