@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #f6f4f0;
  --bg-alt: #efebe4;
  --ink: #1c1a17;
  --ink-soft: #4a463f;
  --line: #d9d2c6;
  --accent: #a8532e;
  --accent-ink: #ffffff;
  --concrete: #b9b3a9;
  --radius: 2px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Big Shoulders Display', Arial Narrow, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); text-transform: uppercase; }
h3 { font-size: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--ink); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,240,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.15rem; text-decoration: none; color: var(--ink); letter-spacing: 0.01em; display: flex; align-items: center; }
.logo span { color: var(--accent); }
.logo-img { height: 20px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-size: 0.93rem; font-weight: 500; color: var(--ink); padding: 6px 0; }
.site-nav a:hover { color: var(--accent); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: -14px; background: #fff;
  border: 1px solid var(--line); min-width: 220px; padding: 8px 0;
  display: none; box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 18px; }
.dropdown-menu a:hover { background: var(--bg-alt); }
.btn-nav {
  background: var(--ink); color: #fff !important; padding: 10px 18px !important;
  border-radius: var(--radius);
}
.btn-nav:hover { background: var(--accent) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; padding: 13px 26px;
  font-weight: 600; font-size: 0.95rem; border-radius: var(--radius);
  border: 1px solid var(--ink); transition: all .15s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.5em; }

/* Hero */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-lead { font-size: 1.15rem; max-width: 46ch; }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-img-grid img:first-child { grid-column: 1 / -1; }
.hero-img-grid img:not(:first-child) { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; height: 100%; }

.photo-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.photo-row-3 img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; height: 100%; }
.photo-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.photo-row-2 img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; height: 100%; }
img { max-width: 100%; display: block; border-radius: var(--radius); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}

/* Sections */
section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-border-top { border-top: 1px solid var(--line); }

/* Logo bar */
.logobar { text-align: center; padding: 40px 0; }
.logobar p.label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 18px; }
.logobar .names { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.4rem; color: var(--ink-soft); display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--line); padding: 0;
  display: flex; flex-direction: column; overflow: hidden;
}
.card img { border-radius: 0; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body .meta { font-size: 0.85rem; color: var(--concrete); margin-bottom: 10px; }
.card-body a.btn { margin-top: auto; align-self: flex-start; }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feature-list li { padding-left: 26px; position: relative; color: var(--ink-soft); }
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px;
  background: var(--accent);
}

/* Pricing table */
table.pricing { width: 100%; border-collapse: collapse; margin: 28px 0; background: #fff; }
table.pricing th, table.pricing td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); }
table.pricing th { font-family: 'Inter'; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink-soft); }
table.pricing td.price { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.3rem; }
.pricing-note { font-size: 0.9rem; color: var(--ink-soft); }

/* Two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* Studio detail blocks */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0; }
.spec-item { border: 1px solid var(--line); padding: 18px 20px; background: #fff; }
.spec-item .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--concrete); }
.spec-item .value { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.25rem; margin-top: 4px; }

/* Form */
form.contact-form { display: grid; gap: 18px; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; display: block; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 0.95rem; color: var(--ink); border-radius: var(--radius);
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }

/* FAQ */
.faq-list { display: grid; gap: 22px; margin-top: 28px; max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.faq-item h3 { font-family: 'Big Shoulders Display', sans-serif; font-weight: 500; font-size: 1.15rem; margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; }

/* Byline / freshness */
.byline { font-size: 0.85rem; color: var(--ink-soft); margin-top: 8px; }
.byline a { color: var(--accent); }

/* Footer */
.site-footer { background: var(--ink); color: #d9d5cc; padding: 56px 0 24px; margin-top: 60px; }
.footer-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.site-footer a { color: #d9d5cc; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer p { color: #b9b3a9; margin: 0 0 8px; }
.footer-logo { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.1rem; color: #fff !important; margin-bottom: 10px; }
.footer-bottom { text-align: center; margin-top: 40px; font-size: 0.8rem; color: #837c6f; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 64px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfc9bd; }

@media (max-width: 860px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 76px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: flex-start; padding: 16px 24px;
    border-bottom: 1px solid var(--line); display: none; gap: 10px;
  }
  .site-nav.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 12px; display: block; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.07); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.whatsapp-float svg { width: 30px; height: 30px; }
@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}
