/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #1c1a17;
  --cream: #f7f4ee;
  --cream-dark: #efe9df;
  --line: #e2dcd0;
  --accent: #b8874a;
  --white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.center { text-align: center; }

.section { padding: 96px 0; }
.section-alt { background: var(--cream-dark); }
.section-sub { max-width: 620px; margin: 0 auto 48px; color: #5c574c; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-small { padding: 10px 20px; font-size: 0.8rem; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #33302a; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--cream); }
.btn-outline-light { border-color: rgba(255,255,255,0.75); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { height: 40px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand-text small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
.main-nav { display: flex; gap: 36px; }
.main-nav a {
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.55) 0%, rgba(20,17,14,0.35) 45%, rgba(20,17,14,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 76px;
  max-width: 720px;
}
.hero .eyebrow { color: #e8cfa0; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  color: var(--white);
}
.hero-sub { font-size: 1.1rem; color: #f0ece3; max-width: 580px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media img { border-radius: 4px; box-shadow: 0 20px 50px rgba(28,26,23,0.18); }
.about-copy p { margin-bottom: 16px; color: #4a453b; }
.about-points { list-style: none; margin-top: 20px; }
.about-points li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: #35322b;
}
.about-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.service-card {
  background: var(--white);
  padding: 34px 26px;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(28,26,23,0.08); }
.service-card p { color: #5c574c; font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
}
.pricing-card-featured {
  background: var(--ink);
  color: #e9e5db;
  border-color: var(--ink);
}
.pricing-card-head { margin-bottom: 16px; }
.pricing-card h3 { margin-bottom: 6px; }
.pricing-card-featured h3 { color: var(--white); }
.pricing-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.pricing-desc { color: #4a453b; margin-bottom: 22px; }
.pricing-card-featured .pricing-desc { color: #cfc9bd; }

.pricing-features { list-style: none; margin-bottom: 28px; display: grid; gap: 10px; }
.pricing-features li {
  padding-left: 24px;
  position: relative;
  font-size: 0.94rem;
  color: #35322b;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.pricing-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.pricing-table tr { border-top: 1px solid var(--line); }
.pricing-table tr:first-child { border-top: none; }
.pricing-table td { padding: 12px 4px; font-size: 1rem; }
.pricing-table td:first-child { color: #4a453b; }
.pricing-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.pricing-fine { font-size: 0.85rem; color: #7a7466; line-height: 1.5; margin-bottom: 10px; }
.pricing-fine:last-child { margin-bottom: 0; }
.pricing-card-featured .pricing-fine { color: #a9a396; }
.pricing-cta { margin-top: 26px; background: var(--white); color: var(--ink); }
.pricing-cta:hover { background: var(--cream); }

/* ---------- Before/After ---------- */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.ba-item { position: relative; overflow: hidden; border-radius: 4px; }
.ba-item img { width: 100%; height: 420px; object-fit: cover; }
.ba-item figcaption {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(28,26,23,0.75);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.gallery-note { text-align: center; margin-top: 12px; color: #5c574c; }
.gallery-note a { color: var(--accent); font-weight: 500; }

/* ---------- Portfolio Masonry ---------- */
.masonry {
  columns: 4;
  column-gap: 18px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(28,26,23,0.08);
}
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item.tall img { aspect-ratio: 3/4; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-info p { color: #4a453b; margin-bottom: 24px; }
.contact-details { display: grid; gap: 20px; }
.contact-details dt {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-details dd { font-size: 1.05rem; }
.contact-details a:hover { color: var(--accent); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
  display: grid;
  gap: 6px;
}
.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5c574c;
  margin-top: 14px;
}
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form button { margin-top: 22px; justify-self: start; }
.hidden-field { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfc9bd; padding: 40px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.85rem;
}
.footer-mark { height: 30px; filter: invert(1); opacity: 0.85; }
.footer-inner a { color: var(--accent); }
.footer-inner a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .contact-grid, .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
}

@media (max-width: 720px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .services-grid { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr; }
  .ba-item img { height: 300px; }
  .masonry { columns: 2; }
  .section { padding: 64px 0; }
  .contact-form { padding: 26px; }
  .pricing-card { padding: 26px; }
}
