:root {
  --cream: #f1ede9;
  --cream-deep: #e8e2db;
  --ivory: #faf8f5;
  --charcoal: #2a2a2a;
  --ink: #3d3d3d;
  --muted: #7a726a;
  --line: #d4ccc3;
  --taupe: #c4b5a5;
  --max: 1120px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-weight: 300; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(241,237,233,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .55rem 0; gap: 1rem; position: relative; }
.logo img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a.nav-cta, .nav-links a.nav-cta {
  border: 1px solid var(--charcoal); padding: .55rem 1rem; color: var(--charcoal);
}
.nav-links a.nav-cta:hover, .nav-links a.nav-cta:hover { background: var(--charcoal); color: var(--cream); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.35rem; color: var(--charcoal); cursor: pointer; }

.eyebrow { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: .85rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.35rem; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--charcoal); font-family: inherit; cursor: pointer; transition: .2s ease;
}
.btn-primary { background: var(--charcoal); color: var(--cream); }
.btn-primary:hover { background: #1a1a1a; }
.btn-ghost { background: transparent; color: var(--charcoal); }
.btn-ghost:hover { background: var(--cream-deep); }

.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center;
  padding: 1.35rem 0 3.25rem;
}
.hero-copy h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.05; color: var(--charcoal); margin-bottom: 1.2rem;
}
.hero-copy h1 em { font-style: italic; color: #5c534c; }
.hero-copy > p { color: var(--muted); max-width: 34rem; margin-bottom: 1.6rem; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--cream-deep); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 1rem; border: 1px solid rgba(255,255,255,.45); pointer-events: none; }

.section { padding: 4.5rem 0; }
.section-alt { background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-header { text-align: center; max-width: 36rem; margin: 0 auto 2.6rem; }
.section-header h2 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 3.4vw, 2.75rem);
  color: var(--charcoal); margin: .5rem 0 .8rem;
}
.section-header p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card { background: var(--ivory); border: 1px solid var(--line); padding: 1.7rem 1.45rem; }
.section-alt .card { background: var(--cream); }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.55rem; color: var(--charcoal); margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card .meta { margin-top: 1rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--taupe); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--cream-deep); }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--charcoal); margin: .45rem 0 1rem;
}
.split-text p { color: var(--muted); margin-bottom: 1rem; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.gallery a, .gallery figure { aspect-ratio: 3/4; overflow: hidden; background: var(--cream-deep); margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.04); }

.page-hero { padding: 3rem 0 2rem; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--charcoal); margin-bottom: .75rem;
}
.page-hero p { color: var(--muted); max-width: 32rem; margin: 0 auto; }

.price-list { max-width: 720px; margin: 0 auto; }
.price-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line);
}
.price-row h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--charcoal); }
.price-row p { color: var(--muted); font-size: .92rem; margin-top: .25rem; }
.price-row .amt { font-size: .85rem; letter-spacing: .08em; color: var(--charcoal); white-space: nowrap; }

.contact-hero { padding: 3.1rem 0 1.4rem; text-align: center; }
.contact-hero h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  color: var(--charcoal); margin: .55rem 0 1rem;
}
.contact-hero p { color: var(--muted); max-width: 34rem; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; padding-bottom: 4.5rem; }
.contact-aside, .form-card {
  background: var(--ivory); border: 1px solid var(--line); padding: 2rem 1.7rem;
}
.contact-aside { height: fit-content; }
.contact-aside h2 { font-family: var(--serif); font-weight: 400; font-size: 1.65rem; color: var(--charcoal); margin-bottom: .85rem; }
.contact-aside li { color: var(--muted); padding: .35rem 0 .35rem 1rem; position: relative; }
.contact-aside li::before { content: "·"; position: absolute; left: 0; color: var(--taupe); }
.contact-aside .note { border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 1rem; font-size: .88rem; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--cream); border: 1px solid var(--line); color: var(--charcoal);
  padding: .8rem .9rem; font: inherit; font-size: .95rem; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--taupe); }
.field textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .65rem; }
.form-actions .hint { font-size: .82rem; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 2.25rem 0 2.5rem; text-align: center; }
.site-footer .logo img { height: 72px; width: auto; margin: 0 auto 1rem; display: block; }
.site-footer p { color: var(--muted); font-size: .85rem; }
.site-footer .social { display: flex; justify-content: center; gap: 1.25rem; margin: .85rem 0 1rem; }
.site-footer .social a { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem 1.25rem 1.25rem; align-items: flex-start;
  }
  .nav-toggle { display: block; }
  .hero, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

.hero-photo img, .split-photo img { object-position: top center; }
.gallery img { object-position: top center; }



.brand-lockup {
  display: flex; justify-content: flex-start; padding: 0 0 .35rem;
}
.brand-lockup img { height: 118px; width: auto; }
.contact-hero .brand-lockup { margin-bottom: 0.5rem; }
.contact-hero .brand-lockup img { height: 96px; }

.gallery-portfolio { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 860px) {
  .gallery-portfolio { grid-template-columns: 1fr 1fr; }
}
