:root {
  --bg: #f4f1ea;
  --bg-tint: #ece7db;
  --ink: #17140f;
  --ink-soft: #4a463e;
  --gold: #a4884f;
  --gold-dark: #7d6a3f;
  --line: rgba(23, 20, 15, 0.14);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Space Mono", "SF Mono", monospace;
  --maxw: 1100px;
  --maxw-wide: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.75em;
  font-weight: 600;
}

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 8px 0;
}
.marquee__track {
  display: inline-flex;
  animation: scroll-left 22s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 56px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav a:hover { color: var(--gold-dark); }
.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 18px !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  padding: clamp(60px, 12vw, 140px) clamp(20px, 5vw, 56px);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-tint), var(--bg));
}
.hero__inner { max-width: 760px; margin: 0 auto; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero__sub {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2em;
}

.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.82; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--ghost { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn--ghost-dark { background: transparent; border: 1px solid var(--bg); color: var(--bg); }

/* Photo hero */
.hero--photo {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 56px);
  text-align: left;
  background-size: cover;
  background-position: center 30%;
  color: var(--bg);
}
.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,20,15,0.15) 0%, rgba(23,20,15,0.05) 40%, rgba(23,20,15,0.75) 100%);
}
.hero--photo .hero__inner { position: relative; max-width: 640px; margin: 0; text-align: left; }
.hero--photo .eyebrow { color: var(--gold-soft, #cdbb8d); }
.hero--photo .hero__sub { color: rgba(244,241,234,0.88); margin-left: 0; }
.hero--photo .btn-row { justify-content: flex-start; }
.hero--photo .btn--ghost { border-color: var(--bg); color: var(--bg); }

/* Editorial byline block */
.byline {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 1.5em;
}
.editorial-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  margin-top: 2em;
}
.editorial-columns p { text-align: justify; }

/* Numbered sections */
.numbered-list {
  border-top: 1px solid var(--line);
  margin-top: 1em;
}
.numbered-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 4vw, 40px);
  padding: clamp(28px, 5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.numbered-item__index {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--gold-dark);
  padding-top: 0.2em;
}
.numbered-item__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 0.4em;
}
.numbered-item__body p { max-width: 620px; }
.numbered-item__links {
  display: flex;
  gap: 20px;
  margin-top: 1em;
  flex-wrap: wrap;
}

/* Photo blocks */
.photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.photo-frame--wide { aspect-ratio: 3/2; }

/* Pill nav-style button label (mono) */
.btn--mono { font-family: var(--mono); letter-spacing: 0.02em; text-transform: none; }

/* Portfolio press-slide */
.press-slide {
  --umber: #4a3f2f;
  --stamp: #9fb4c9;
  background: var(--umber);
  padding: clamp(28px, 5vw, 48px);
  position: relative;
}
.press-slide__frame {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
}
.press-slide__frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.press-slide__frame img:first-child { filter: grayscale(1) contrast(1.05); }
.press-slide__mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.press-slide__mark span {
  position: absolute;
  top: 50%;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--stamp);
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
}
.press-slide__mark span:nth-child(1) { left: 13%; top: 44%; transform: translate(-50%, -50%) rotate(-90deg); }
.press-slide__mark span:nth-child(2) { left: 50%; top: 60%; transform: translate(-50%, -50%) rotate(-90deg); }
.press-slide__mark span:nth-child(3) { left: 85%; top: 38%; transform: translate(-50%, -50%) rotate(90deg); }
.press-slide__label {
  position: absolute;
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.75);
}
.press-slide__label--tl { top: clamp(28px, 5vw, 48px); left: 14px; transform: rotate(180deg); }
.press-slide__label--tr { top: clamp(28px, 5vw, 48px); right: 14px; }
.press-slide__label--bl { bottom: clamp(28px, 5vw, 48px); left: 14px; transform: rotate(180deg); }
.press-slide__label--br { bottom: clamp(28px, 5vw, 48px); right: 14px; }
@media (max-width: 640px) {
  .press-slide__frame { grid-template-columns: 1fr; }
  .press-slide__frame img { aspect-ratio: 4/3; }
  .press-slide__mark span:nth-child(1),
  .press-slide__mark span:nth-child(2),
  .press-slide__mark span:nth-child(3) { transform: none; position: static; display: block; text-align: center; font-size: clamp(1.4rem, 8vw, 2.2rem); }
  .press-slide__mark { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); flex-direction: column; }
}

/* Values strip */
.values-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  padding: 22px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-dark);
}

/* Sections */
.section { padding: clamp(56px, 9vw, 100px) clamp(20px, 5vw, 56px); }
.section--tint { background: var(--bg-tint); }
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section__inner h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section__intro { max-width: 620px; }

/* About */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}
.about__photo {
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, #e3ddcd, #e3ddcd 12px, #ddd6c2 12px, #ddd6c2 24px);
  border: 1px dashed var(--gold-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  padding: 20px;
}
.placeholder-copy {
  font-style: italic;
  padding: 14px 16px;
  background: rgba(164, 136, 79, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 2em;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}
.section--tint .card { background: var(--bg); }
.card h3 { font-size: 1.25rem; }
.card__meta {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.link-arrow {
  display: inline-block;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.placeholder-card { border-style: dashed; border-color: var(--gold-dark); }

/* Price table */
.price-table {
  margin-top: 1.5em;
  border-top: 1px solid var(--line);
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.price-row span:first-child { color: var(--ink); }
.price-row span:last-child { color: var(--gold-dark); font-weight: 600; white-space: nowrap; }
.fine-print { font-size: 0.78rem; margin-top: 1.2em; max-width: 620px; }
#pricing .btn { margin-top: 1em; }

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 56px);
  text-align: center;
}
.cta-banner__inner h2 { color: var(--bg); }
.cta-banner__inner p { color: rgba(244, 241, 234, 0.75); margin-bottom: 2em; }

/* Contact */
.contact a { text-decoration: none; border-bottom: 1px solid var(--line); }

/* Card grid variant */
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* FAQ list */
.faq-list {
  margin-top: 2.5em;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.faq-item p { margin: 0; }
#extensions .btn-row { margin-top: 2.5em; align-items: center; }
.extensions-more { align-self: center; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding-top: 0;
  overflow: hidden;
}
.footer-marquee {
  background: rgba(244, 241, 234, 0.06);
  color: var(--gold-soft);
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 8px 0;
}
.footer-marquee__track {
  display: inline-flex;
  animation: scroll-left 18s linear infinite;
}
.footer-marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 8vw, 88px);
  padding: clamp(48px, 8vw, 88px) 24px;
  flex-wrap: wrap;
}
.mark { filter: invert(1); opacity: 0.94; }
.mark--monogram { height: clamp(56px, 8vw, 84px); width: auto; }
.mark--squiggle { height: clamp(34px, 5vw, 48px); width: auto; }
.mark--badge { height: clamp(72px, 10vw, 108px); width: auto; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 0 24px 28px;
  font-size: 0.85rem;
}
.footer-links a { text-decoration: none; border-bottom: 1px solid rgba(244, 241, 234, 0.3); }
.footer-copyright {
  text-align: center;
  padding: 20px 24px 32px;
  font-size: 0.76rem;
  color: rgba(244, 241, 234, 0.6);
  border-top: 1px solid rgba(244, 241, 234, 0.12);
  margin: 0 24px;
}

/* Responsive */
@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; }
  .editorial-columns { grid-template-columns: 1fr; }
  .numbered-item { grid-template-columns: 1fr; gap: 10px; }
  .hero--photo { align-items: flex-end; min-height: 92vh; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; width: 100%; }
  .nav-cta { margin-top: 8px; text-align: center; }
}
