/* ============================================
   CREATED BY HAM LLC — Oil Painting & Woodworking
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #F3EEE3;
  --cream-dark: #E9E1D0;
  --dark: #1C1712;
  --dark-soft: #241E17;
  --gold: #D9A441;
  --gold-dark: #B8841F;
  --gold-light: #E9C878;
  --brown-text: #3A2E22;
  --brown-muted: #6B5D4C;
  --border-soft: #DCD2BC;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius: 3px;
  --shadow-soft: 0 8px 24px rgba(28, 23, 18, 0.12);
  --shadow-lift: 0 14px 34px rgba(28, 23, 18, 0.18);

  --max-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

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

:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 2px;
}

/* ---------- Typography ---------- */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.eyebrow--on-dark { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}

h3 { font-size: 1.3rem; font-weight: 700; text-transform: none; }

p.lead {
  font-size: 1.05rem;
  color: var(--brown-muted);
}

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

.section-head .rule {
  width: 54px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-lift); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--dark); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 164, 65, 0.15);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand img {
  height: 88px;
  width: 88px;
  background: var(--cream);
  border-radius: 50%;
  padding: 5px;
}

.brand-name {
  font-family: var(--font-body);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-transform: uppercase;
}

.brand-name span { display: block; color: var(--gold); font-size: 0.7rem; letter-spacing: 0.14em; font-weight: 600; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold);
  border-color: var(--gold);
}

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 40px 90px max(32px, calc((100vw - 1180px) / 2 + 32px));
}

.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.3rem);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--brown-text);
  margin-bottom: 20px;
  max-width: 460px;
}

.hero .divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}

.hero p.lead { max-width: 440px; margin-bottom: 34px; }

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

.hero-media {
  position: relative;
  min-height: 340px;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- What I Do ---------- */

.services-strip {
  background: var(--cream-dark);
  padding: 84px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-item {
  text-align: center;
  padding: 0 26px;
  border-left: 1px solid var(--border-soft);
}

.service-item:first-child { border-left: none; }

.service-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.service-icon svg { width: 30px; height: 30px; }

.service-item h3 { margin-bottom: 10px; font-size: 1.08rem; text-transform: uppercase; letter-spacing: 0.02em; }

.service-item p { color: var(--brown-muted); font-size: 0.92rem; }

/* ---------- Recent Work / Dark gallery strip ---------- */

.work-strip {
  background: var(--dark);
  padding: 90px 0;
}

.work-strip .section-head h2 { color: var(--cream); }
.work-strip .section-head .rule { background: var(--gold); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 46px;
}

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

.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-grid a:hover img { transform: scale(1.07); }

.work-strip .center { text-align: center; }

/* ---------- About preview ---------- */

.about-preview {
  background: var(--cream);
  padding: 90px 0;
}

.about-preview .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 0.62fr;
  gap: 48px;
  align-items: center;
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-preview p.lead { margin: 18px 0 26px; }

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

.quote-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.quote-card .heart { color: var(--gold-dark); font-size: 1.4rem; margin-bottom: 14px; }

.quote-card p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--brown-text); margin-bottom: 16px; }

.quote-card .sig { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--gold-dark); }

/* ---------- CTA banner ---------- */

.cta-banner { background: var(--gold); padding: 30px 0; }

.cta-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner-text { display: flex; align-items: center; gap: 18px; }

.cta-banner .heart-badge {
  width: 46px; height: 46px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
}

.cta-banner h3 { text-transform: uppercase; font-size: 1.25rem; margin-bottom: 4px; }
.cta-banner p { color: var(--dark); font-weight: 500; font-size: 0.95rem; }

/* ---------- Footer ---------- */

.site-footer { background: var(--dark); color: var(--cream); padding: 64px 0 24px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(243, 238, 227, 0.12);
}

.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img {
  height: 50px;
  width: 50px;
  background: var(--cream);
  border-radius: 50%;
  padding: 4px;
}
.footer-brand-name { font-weight: 700; color: var(--gold); text-transform: uppercase; font-size: 0.95rem; margin-bottom: 6px; }
.footer-brand p { color: #C9BEAA; font-size: 0.88rem; }

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }

.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; color: #DCD2BC; }
.footer-col .contact-line svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.footer-bottom {
  text-align: center;
  padding-top: 22px;
  font-size: 0.82rem;
  color: #8A7C67;
}

.footer-bottom a { color: #8A7C67; text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold); }

.footer-credit {
  text-align: center;
  font-size: 0.76rem;
  color: #6B6050;
  margin-top: 8px;
}

.footer-credit a { color: #6B6050; text-decoration: underline; }
.footer-credit a:hover { color: var(--gold); }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: var(--dark);
  padding: 70px 0 56px;
  text-align: center;
}

.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--cream); text-transform: uppercase; font-size: clamp(2.2rem, 4.4vw, 3.1rem); }
.page-hero p { color: #C9BEAA; max-width: 560px; margin: 14px auto 0; }

/* ---------- Generic content section ---------- */

.section { padding: 90px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--cream-dark); }

/* ---------- Services page ---------- */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 36px;
  border-radius: var(--radius);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.offer-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }

.offer-card .service-icon { margin: 0 0 20px; }
.offer-card h3 { text-transform: uppercase; margin-bottom: 10px; }
.offer-card p { color: var(--brown-muted); margin-bottom: 16px; }
.offer-card ul li { color: var(--brown-text); font-size: 0.92rem; padding-left: 20px; position: relative; margin-bottom: 8px; }
.offer-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 70px;
}

.process-step { text-align: center; }
.process-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step h3 { font-size: 1rem; text-transform: uppercase; margin-bottom: 8px; }
.process-step p { color: var(--brown-muted); font-size: 0.9rem; }

/* ---------- Gallery page ---------- */

.filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--dark); color: var(--cream); }

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

.masonry-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-soft);
}

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

.masonry-grid figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(28,23,18,0.85), transparent);
  color: var(--cream);
  padding: 26px 16px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.masonry-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 12, 9, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.lightbox-close {
  position: absolute; top: 26px; right: 34px;
  background: transparent; border: none;
  color: var(--cream); font-size: 2.2rem; line-height: 1;
  cursor: pointer;
}
.lightbox-caption {
  position: absolute; bottom: 30px; left: 0; right: 0;
  text-align: center; color: var(--cream); font-size: 0.9rem; letter-spacing: 0.04em;
}

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 { text-transform: uppercase; margin-bottom: 22px; }

.info-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.info-line .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-line .ic svg { width: 18px; height: 18px; }
.info-line strong { display: block; margin-bottom: 2px; }
.info-line span, .info-line a { color: var(--brown-muted); font-size: 0.92rem; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  margin-bottom: 7px;
  color: var(--brown-text);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--brown-text);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-dark);
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }

.consent-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; }
.consent-line input { margin-top: 4px; flex-shrink: 0; width: 16px; height: 16px; }
.consent-line label { font-size: 0.78rem; color: var(--brown-muted); font-weight: 400; line-height: 1.5; }

.form-status { margin-top: 16px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #3E6B3E; }
.form-status.err { color: #A3403A; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .main-nav { display: none; }
  .main-nav.nav-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 10px 32px 24px;
    border-top: 1px solid rgba(217, 164, 65, 0.15);
  }
  .main-nav.nav-open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(243, 238, 227, 0.08);
    width: 100%;
  }
  .site-header .wrap { position: relative; flex-wrap: wrap; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; min-height: 320px; }
  .hero-copy { padding: 50px 24px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .service-item { border-left: none; padding: 0 10px; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .about-preview .wrap { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner .wrap { flex-direction: column; text-align: center; }
  .masonry-grid { grid-template-columns: 1fr 1fr; }
  .process-strip { grid-template-columns: 1fr; }
}

/* ---------- Legal pages (Privacy / Terms) ---------- */

.legal {
  max-width: 720px;
  margin: 0 auto;
}

.legal h2 {
  text-transform: none;
  font-size: 1.35rem;
  color: var(--gold-dark);
  margin: 44px 0 12px;
}

.legal h2:first-child { margin-top: 0; }

.legal p {
  color: var(--brown-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal ul {
  margin: 0 0 16px 0;
}

.legal ul li {
  color: var(--brown-muted);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.legal a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }

.legal .contact-block {
  background: var(--cream-dark);
  border: 1px solid var(--border-soft);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-top: 12px;
}

.legal .contact-block p { margin-bottom: 4px; }
.legal .contact-block p:last-child { margin-bottom: 0; }

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 46px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-dark);
}

.back-home:hover { color: var(--dark); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
