/* ========== Base / Variables ========== */
:root {
  --cream: #faf6f1;
  --cream-dark: #f1e9df;
  --sage: #a7b6a3;
  --sage-dark: #7f9179;
  --terracotta: #c17a5a;
  --terracotta-dark: #a8613f;
  --ink: #2c2925;
  --ink-soft: #5b564f;
  --white: #ffffff;
  --gold: #c9a86a;
  --radius: 4px;
  --max-width: 1200px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 16px; color: var(--ink-soft); }

section { padding: 96px 0; }

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-light:hover { background: var(--cream-dark); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(253,251,248,0.85) 0%, rgba(253,251,248,0) 100%);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 246, 241, 0.96);
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  padding: 12px 0;
  backdrop-filter: blur(6px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 0.6; }

.header-cta { display: flex; align-items: center; gap: 20px; }

.header-cta .btn { padding: 12px 26px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/hero-banner.jpg");
  background-size: cover;
  background-position: left center;
}

.hero .container {
  position: static;
}

/* Center the text within the open (non-photo) band of the hero image,
   rather than pinning it to the right edge, so space reads balanced. */
.hero-content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 48%;
  right: 0;
  transform: translateY(-50%);
  max-width: 460px;
  margin: 0 auto;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hero-content { max-width: 380px; }
  .hero h1 { font-size: 2.1rem; }
}

.hero .eyebrow { color: var(--terracotta-dark); }

.hero h1 { color: var(--ink); margin-bottom: 22px; letter-spacing: -0.01em; }

.hero p.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-strip {
  background: var(--cream-dark);
  padding: 24px 0;
  border-top: 1px solid rgba(44,41,37,0.06);
}

.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.trust-item {
  flex: 1;
  min-width: 180px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--terracotta-dark);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
  font-weight: 600;
}

/* ========== Experience / About ========== */
.experience {
  background: var(--cream);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.experience-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.experience-images img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.experience-images .img-tall { grid-row: span 2; height: 100%; aspect-ratio: 3/4; object-fit: cover; }
.experience-images .img-short { aspect-ratio: 4/3; object-fit: cover; }

.experience-text .eyebrow { color: var(--sage-dark); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--sage);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='4,13 9,18 20,6'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ========== Services ========== */
.services { background: var(--white); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  color: var(--white);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img { transform: scale(1.06); }

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,16,12,0.75) 100%);
}

.service-card-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.service-card-label h3 { color: var(--white); margin-bottom: 4px; }
.service-card-label span { font-size: 0.82rem; color: rgba(255,255,255,0.85); }

/* ========== Gallery ========== */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.gallery-grid img:hover { opacity: 0.85; }

.gallery-grid .gi-tall { grid-row: span 2; }

.gallery-cta { text-align: center; margin-top: 44px; }

/* ========== Studios ========== */
.studios { background: var(--white); }

.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.studio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  color: var(--white);
}

.studio-card img { width: 100%; height: 100%; object-fit: cover; }

.studio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(15,12,10,0.65) 100%);
}

.studio-card-label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
}
.studio-card-label .eyebrow { color: var(--cream); }
.studio-card-label h3 { color: var(--white); margin: 0; }

/* ========== Stats ========== */
.stats {
  background: var(--ink);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ========== Testimonials ========== */
.testimonials { background: var(--cream); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 6px 24px rgba(44,41,37,0.06);
}

.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.9rem; }

.testimonial-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
  margin-top: 12px;
}
.testimonial-role { font-size: 0.8rem; color: var(--ink-soft); }

/* ========== Instagram strip ========== */
.instagram-strip { background: var(--white); padding-bottom: 96px; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.instagram-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
}

.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.instagram-grid a:hover img { transform: scale(1.08); }

/* ========== CTA banner ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 30px; }

/* ========== Contact ========== */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 { margin-bottom: 18px; }

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-detail .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail strong { display: block; color: var(--ink); }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd4c8;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
textarea { resize: vertical; min-height: 120px; }

/* ========== Footer ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 76px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.footer-logo span { color: var(--terracotta); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }

.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* ========== Placeholder note ========== */
.placeholder-note {
  background: #fff4e0;
  border: 1px solid #e8c98a;
  color: #6b5522;
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .nav-links, .header-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .experience-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero {
    display: block;
    min-height: auto;
    padding: 0;
  }
  .hero-bg {
    position: static;
    width: 100%;
    aspect-ratio: 5/6;
    margin-top: 78px;
    background-position: 30% center;
  }
  .hero .container { display: block; }
  .hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    padding: 40px 0 56px;
  }
  .service-grid, .studio-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .service-grid, .studio-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .container { flex-direction: column; }
}

/* ========== Mobile nav drawer ========== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  gap: 26px;
}
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ink);
}
