/* ==========================================================================
   RESKIN TOKENS - this block is the fastest way to make this template feel
   like a different brand. Start here before touching anything below it.
   ========================================================================== */
:root {
  /* --- color --- */
  --bg:          #F6F3EE;   /* page background, warm neutral */
  --bg-alt:      #EDE8DE;   /* alternating section background */
  --ink:         #17170F;   /* primary text */
  --ink-muted:   #6E6A5E;   /* secondary text */
  --line:        rgba(23, 23, 15, 0.12);
  --accent:      #8B5E3C;   /* THE color most clients will want swapped */
  --accent-ink:  #FBF8F3;   /* text color on top of --accent */

  /* --- type --- */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- shape / rhythm --- */
  --radius: 2px;
  --section-pad: 8rem;
  --wrap-width: 1180px;
}

@media (max-width: 640px) {
  :root { --section-pad: 4.5rem; }
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 2.5rem; }
h3 { font-size: 1.25rem; font-weight: 500; }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--accent-ink);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ==========================================================================
   PLACEHOLDER IMAGE BLOCKS
   Swap these divs for <img>/<video> tags. The gradient + label are only
   here so the template looks intentional before real photography lands.
   ========================================================================== */
.ph-block {
  position: relative;
  background:
    linear-gradient(135deg, rgba(23,23,15,0.06), rgba(23,23,15,0.02)),
    repeating-linear-gradient(45deg, rgba(23,23,15,0.03) 0 2px, transparent 2px 14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ph-block::after {
  content: attr(data-ph);
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  font-family: var(--font-body);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-solid {
  background: var(--ink);
  color: var(--accent-ink);
}
.btn-solid:hover { background: var(--accent); }
.btn-line {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-line:hover { border-color: var(--ink); }
.btn-large { padding: 1.1rem 2.2rem; font-size: 1rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header[data-scrolled] { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.nav {
  display: flex;
  gap: 2.2rem;
  font-size: 0.9rem;
}
.nav a { color: var(--ink-muted); transition: color 0.2s ease; }
.nav a:hover { color: var(--ink); }
.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 860px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-header[data-open] .nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 2rem 1.5rem;
  }
  .site-header[data-open] .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .site-header[data-open] .nav-cta {
    display: inline-flex;
    position: absolute;
    top: 100%;
    margin-top: calc(0.5rem + 1px);
    left: 2rem;
  }
  .site-header[data-open] .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header[data-open] .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header[data-open] .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding-top: 6rem; padding-bottom: 6rem; }
.hero-inner { text-align: left; max-width: 760px; }
.hero-sub {
  margin-top: 1.6rem;
  max-width: 46ch;
  color: var(--ink-muted);
  font-size: 1.05rem;
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .hero { padding-top: 3rem; padding-bottom: 3rem; }
}

/* ==========================================================================
   SECTION SPACING (shared)
   ========================================================================== */
.about, .services, .work, .testimonial, .faq, .contact {
  padding: var(--section-pad) 0;
}
.services, .testimonial, .faq { background: var(--bg-alt); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-list { margin-top: 1.5rem; }
.about-page { padding-top: calc(var(--section-pad) + 2rem); }
.about-copy h1 { margin-bottom: 2.5rem; }
.about-copy .btn { margin-top: 2rem; }
.about-list li {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.about-list li:last-child { border-bottom: 1px solid var(--line); }

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg-alt);
  padding: 2.5rem 2rem;
}
.service-num {
  display: block;
  font-family: var(--font-heading);
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.service-card h3 { margin-bottom: 0.8rem; }
.service-card p { color: var(--ink-muted); font-size: 0.92rem; }
.service-price {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink) !important;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WORK
   ========================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}
.work-card { display: block; }
.work-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card:hover .work-thumb { opacity: 0.8; }
.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
}
.status-tag {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  vertical-align: middle;
}
.work-meta span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.testimonial-inner {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
}
.quote-attr {
  margin-top: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 720px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--ink-muted);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.process-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-num {
  font-family: var(--font-heading);
  color: var(--ink-muted);
  flex-shrink: 0;
}
.process-list h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.process-list p { color: var(--ink-muted); font-size: 0.9rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0.1rem;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  max-width: 40ch;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.socials {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.socials a:hover { color: var(--ink); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-nav { display: flex; gap: 1.6rem; font-size: 0.85rem; color: var(--ink-muted); }
.footer-nav a:hover { color: var(--ink); }
.footer-copy { font-size: 0.8rem; color: var(--ink-muted); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
