/* === OKC Wallpaper === */

:root {
  --bg: #faf6ef;
  --bg-alt: #f0eadf;
  --ink: #1a1816;
  --ink-soft: #5a5448;
  --accent: #9b8762;
  --line: #d8d0bf;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 32px 48px;
  transition: transform 0.3s ease;
}
.site-header.nav-hidden { transform: translateY(-100%); }
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 1280px;
  margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px 120px;
}
.hero-image {
  aspect-ratio: 4/5;
  width: 100%;
}
.hero-content { padding-right: 32px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); }
.btn-secondary {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }

/* Sections */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px;
  scroll-margin-top: 92px;
}
.section-head {
  margin-bottom: 56px;
  max-width: 640px;
}
.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
}

/* Portfolio — asymmetric editorial grid (9 items) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 24px;
}
.portfolio-item:nth-child(1) { grid-column: 1 / 7; }
.portfolio-item:nth-child(2) { grid-column: 8 / 13; margin-top: 96px; }
.portfolio-item:nth-child(3) { grid-column: 2 / 8; margin-top: 32px; }
.portfolio-item:nth-child(4) { grid-column: 9 / 13; }
.portfolio-item:nth-child(5) { grid-column: 1 / 5; margin-top: 64px; }
.portfolio-item:nth-child(6) { grid-column: 6 / 13; margin-top: 24px; }
.portfolio-item:nth-child(7) { grid-column: 2 / 7; margin-top: 48px; }
.portfolio-item:nth-child(8) { grid-column: 8 / 13; margin-top: 80px; }
.portfolio-item:nth-child(9) { grid-column: 3 / 11; margin-top: 56px; }

.portfolio-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 12px;
  letter-spacing: 0.01em;
}
/* Press mention under a caption (e.g. "As featured in 405 Magazine") */
.portfolio-press {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.portfolio-press a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.portfolio-press a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.portfolio-credit {
  margin-top: 48px;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.portfolio-credit a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.portfolio-credit a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* About */
.about-content {
  max-width: 720px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.6;
}
.about-content p + p { margin-top: 24px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.service-card {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
}
.service-card p + p { margin-top: 12px; }
.card-link {
  margin-top: 16px;
}
.card-link a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.card-link a:hover { border-bottom-color: var(--accent); color: var(--ink); }

/* Contact */
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.social-links {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
}
.social-link {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.social-link:hover { color: var(--accent); }
.contact-link {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  display: inline-block;
  width: fit-content;
  transition: border-color 0.2s;
}
.contact-link:hover { border-color: var(--accent); }
.service-area {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 15px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}
.review { margin: 0; }
.review-quote {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
}
.review-attr {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.reviews-source {
  margin-top: 56px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Brands */
.brands { text-align: center; }
.brands-inner { max-width: 820px; margin: 0 auto; }
.brands-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.brands-list {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.brands-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}
.brands-list a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.brands-list a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Latest — What's on the Table */
.latest-feed { margin-top: 8px; }
.latest-placeholder {
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: 64px 24px;
  text-align: center;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}
.section-sub a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s;
}
.section-sub a:hover { border-bottom-color: var(--accent); }

/* Instagram grid + lightbox */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ig-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  margin: 0;
  background: var(--bg-alt);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ig-item:hover img { transform: scale(1.04); }
.ig-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  color: #fff;
  font-size: 13px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.ig-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 22, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.ig-lightbox.open { display: flex; }
.ig-lb-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
}
.ig-lb-img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #14110f;
  display: block;
}
.ig-lb-meta { padding: 20px 24px 24px; }
.ig-lb-cap {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-lb-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.ig-lb-link:hover { border-bottom-color: var(--accent); }
.ig-lb-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 38px;
  height: 38px;
  background: none;
  border: 0;
  color: var(--bg);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ig-lb-close { top: 6px; right: 6px; color: #fff; z-index: 3; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
  .ig-lb-cap { font-size: 15px; }
}

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 24px 44px 24px 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 24px;
  font-size: 24px;
  line-height: 1;
  color: var(--accent);
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-answer {
  padding: 0 44px 28px 0;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.faq-answer a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s;
}
.faq-answer a:hover { border-bottom-color: var(--accent); }
.faq-item:not([open]) .faq-answer { display: none; }

/* Contact section booking note + form CTA */
.booking-note { margin-top: 8px; font-size: 16px; }
.booking-note strong { color: var(--ink); font-weight: 500; }
.contact-cta { margin-bottom: 36px; }
.contact-cta-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 420px;
}

/* Leaving-site warning */
.leave-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 22, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.leave-modal.open { display: flex; }
.leave-inner {
  background: var(--bg);
  width: 100%;
  max-width: 440px;
  padding: 40px 36px 32px;
  text-align: center;
}
.leave-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.leave-msg {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
}
.leave-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.leave-continue {
  display: inline-block;
  padding: 13px 26px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.leave-continue:hover { background: var(--accent); }
.leave-cancel {
  padding: 13px 26px;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.leave-cancel:hover { border-color: var(--ink); color: var(--ink); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--bg);
  font-size: 20px;
  line-height: 1;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.2s ease;
  z-index: 60;
}
#back-to-top.show { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--accent); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 48px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-member {
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.footer-wia {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 24px;
}
.site-footer a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.site-footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Placeholder boxes */
.image-placeholder {
  background: linear-gradient(135deg, #e8e0d0 0%, #d0c4ad 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  width: 100%;
  position: relative;
}
.image-placeholder.portrait { aspect-ratio: 4/5; }
.image-placeholder.landscape { aspect-ratio: 4/3; }
.image-placeholder::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(26, 24, 22, 0.15);
  pointer-events: none;
}

/* Real images replace placeholder boxes */
.image-placeholder.has-image {
  background: none;
  overflow: hidden;
}
.image-placeholder.has-image::after { display: none; }
.image-placeholder.has-image > img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-item:hover .image-placeholder.has-image > img {
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .site-header { padding: 20px 16px; }
  .site-nav { flex-direction: column; gap: 14px; align-items: center; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 12px 16px; }
  .nav-links a { font-size: 11px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 24px 72px;
    gap: 40px;
  }
  .hero-content { padding-right: 0; }
  .section { padding: 64px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .about-content { font-size: 18px; }
  .contact-link { font-size: 28px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 40px; }
  .review-quote { font-size: 19px; }
  .brands-list { font-size: 20px; }
  .faq-item summary { font-size: 18px; }
}
