/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --bg:     #F9F7F4;
  --bg2:    #F2EFE9;
  --border: #E6E0D8;
  --ink:    #1E1C1A;
  --mid:    #6B6663;
  --dim:    #AAA49C;
}

/* ── BASE ── */
body { background: var(--bg); color: var(--ink); font-family: 'Jost', sans-serif; font-weight: 300; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249,247,244,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  height: 64px; display: flex; justify-content: space-between; align-items: center;
}
.logo { font-family: 'Pinyon Script', cursive; font-size: 1.9rem; color: var(--ink); text-decoration: none; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.current { color: var(--ink); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: rgba(249,247,244,0.98); backdrop-filter: blur(8px);
  border: 1px solid var(--border); min-width: 190px;
  padding-top: 16px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; }
.nav-dropdown a {
  display: block; padding: 13px 20px;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; font-weight: 300;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--ink); background: var(--bg2); }
.nav-right a {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 1px;
  transition: opacity 0.2s;
}
.nav-right a:hover { opacity: 0.55; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero { width: 100%; height: 56vh; overflow: hidden; position: relative; }
.page-hero img, .page-hero video { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,28,26,0.6) 0%, rgba(30,28,26,0.12) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 56px 72px;
}
.page-hero-overlay .eyebrow { color: rgba(249,247,244,0.65); }
.page-hero-overlay h1,
.page-hero-overlay .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400; font-style: italic; color: #F9F7F4; line-height: 1.2; margin-top: 8px;
}

/* ── EYEBROW ── */
.eyebrow {
  font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 18px; font-weight: 400;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: opacity 0.25s;
}
.btn:hover { opacity: 0.45; }
.btn-light {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: #F9F7F4; text-decoration: none;
  border-bottom: 1px solid rgba(249,247,244,0.6); padding-bottom: 2px; transition: opacity 0.25s;
}
.btn-light:hover { opacity: 0.55; }

/* ── SECTION HEADS ── */
.sec-head {
  max-width: 1200px; margin: 0 auto 48px; padding: 0 56px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 400; font-style: italic; margin-top: 10px;
}
.sec-link {
  font-size: 0.62rem; letter-spacing: 0.14em; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 1px;
  transition: opacity 0.2s; font-weight: 400;
}
.sec-link:hover { opacity: 0.45; }

/* ── BRANDS TICKER ── */
.brands { padding: 56px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.brands-ticker-label { text-align: center; margin-bottom: 28px; }
.ticker-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.ticker-track {
  display: flex; align-items: center; width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 0 64px; border-right: 1px solid var(--border);
}
.ticker-item img {
  height: 60px; max-width: 260px; width: auto;
  object-fit: contain; filter: grayscale(1); opacity: 0.55; transition: opacity 0.3s;
}
.ticker-track:hover .ticker-item img { opacity: 0.85; }
.ticker-item span { display: none; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES GRID ── */
.services { padding: 96px 0; border-bottom: 1px solid var(--border); }
.svc-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-item { text-decoration: none; color: inherit; cursor: pointer; display: block; }
.svc-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 16px; }
.svc-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease;
}
.svc-item:hover .svc-img img { transform: scale(1.03); }
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; font-style: italic; margin-bottom: 8px;
}
.svc-desc { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 10px; }
.svc-price { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--dim); text-transform: uppercase; }

/* ── SERVICE SPLIT (services page) ── */
.svc-split { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); height: 560px; }
.svc-split.reverse { direction: rtl; }
.svc-split.reverse > * { direction: ltr; }
.svc-split-img { overflow: hidden; height: 100%; }
.svc-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-split-text {
  padding: 72px 64px; display: flex; flex-direction: column; justify-content: center;
}
.svc-split-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; font-style: italic;
  margin-bottom: 20px; line-height: 1.2;
}
.svc-split-text p { font-size: 1rem; color: var(--mid); line-height: 1.95; margin-bottom: 14px; }
.svc-split-text .price-note {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim); margin-top: 8px; margin-bottom: 28px;
}

/* ── FEATURE LIST ── */
.feature-list { list-style: none; margin: 16px 0 28px; }
.feature-list li {
  font-size: 0.95rem; color: var(--mid); padding: 10px 0;
  border-bottom: 1px solid var(--border); line-height: 1.6;
}
.feature-list li:first-child { border-top: 1px solid var(--border); }

/* ── PORTFOLIO ── */
.portfolio { padding: 96px 0; border-bottom: 1px solid var(--border); }
.port-head {
  max-width: 1200px; margin: 0 auto 32px; padding: 0 56px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.port-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 400; font-style: italic; margin-top: 10px;
}
.port-filters {
  max-width: 1200px; margin: 0 auto 36px; padding: 0 56px; display: flex; gap: 6px;
}
.filter-btn {
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 18px; background: none; border: 1px solid var(--border);
  color: var(--mid); cursor: pointer; font-family: 'Jost', sans-serif;
  font-weight: 300; transition: all 0.2s;
}
.filter-btn:hover { color: var(--ink); border-color: var(--dim); }
.filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.port-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px; grid-auto-flow: dense; gap: 8px;
}
.p-cell { overflow: hidden; }
.p-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease;
}
.p-cell:hover img { transform: scale(1.03); }
.p-cell.hidden, .p-cell.over-limit { display: none; }

/* ── BLOG ── */
.blog { padding: 96px 0; border-bottom: 1px solid var(--border); }
.blog-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.blog-card { text-decoration: none; color: inherit; }
.blog-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; margin-bottom: 20px; }
.blog-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.03); }
.blog-cat {
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 10px;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 400; font-style: italic;
  line-height: 1.45; margin-bottom: 12px; color: var(--ink);
}
.blog-excerpt { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.blog-link {
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px;
}

/* ── PRESS ── */
.press { padding: 48px 56px; text-align: center; border-bottom: 1px solid var(--border); }
.press-names { display: flex; justify-content: center; gap: 48px; margin-top: 20px; flex-wrap: wrap; }
.press-names span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid);
}

/* ── FOOTER CTA ── */
.footer-cta { padding: 96px 56px; text-align: center; border-bottom: 1px solid var(--border); }
.footer-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 400; font-style: italic; margin-bottom: 14px;
}
.footer-cta p {
  font-size: 0.86rem; color: var(--mid); max-width: 440px; margin: 0 auto 32px; line-height: 1.9;
}

/* ── FOOTER ── */
footer { padding: 56px 56px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-brand .logo { display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 0.88rem; color: var(--dim); line-height: 1.85; max-width: 240px; }
.footer-col h4 {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--ink); }
.footer-bottom {
  max-width: 1200px; margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 0.65rem; letter-spacing: 0.08em; color: var(--dim); }

/* ── ABOUT ── */
.about-intro { max-width: 680px; margin: 0 auto; padding: 96px 56px; text-align: center; }
.about-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; font-style: italic;
  margin-bottom: 24px; line-height: 1.3;
}
.about-intro p { font-size: 1rem; color: var(--mid); line-height: 2; margin-bottom: 16px; }
.about-story {
  border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr;
}
.about-story-img { overflow: hidden; min-height: 560px; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-story-text {
  padding: 80px 72px; display: flex; flex-direction: column; justify-content: center;
  background: var(--bg2);
}
.about-story-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 400; font-style: italic; margin-bottom: 24px;
}
.about-story-text p { font-size: 1rem; color: var(--mid); line-height: 2; margin-bottom: 14px; }
.values-strip {
  padding: 80px 56px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.values-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.value-item { text-align: center; padding: 0 24px; }
.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem; letter-spacing: 0.2em; color: var(--dim); margin-bottom: 20px;
}
.value-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 400; font-style: italic; margin-bottom: 14px;
}
.value-desc { font-size: 0.92rem; color: var(--mid); line-height: 1.9; }
.pull-quote {
  padding: 96px 56px; text-align: center;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 400; font-style: italic;
  color: var(--ink); max-width: 720px; margin: 0 auto; line-height: 1.65;
}

/* ── SERVICE DETAIL GALLERY ── */
.svc-gallery { padding: 0 0 80px; }
.svc-gallery-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.svc-gallery-inner .gc { overflow: hidden; aspect-ratio: 4/3; }
.svc-gallery-inner .gc.tall { aspect-ratio: 3/4; }
.svc-gallery-inner .gc img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease;
}
.svc-gallery-inner .gc:hover img { transform: scale(1.04); }

/* ── PRICING ── */
.pricing-block {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 64px 56px; text-align: center;
}
.pricing-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400; font-style: italic; margin-bottom: 12px;
}
.pricing-block .price {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: 'Playfair Display', serif; font-weight: 400; margin-bottom: 8px;
}
.pricing-block .price-note {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 28px;
}
.pricing-block p {
  font-size: 1rem; color: var(--mid); line-height: 1.9;
  max-width: 480px; margin: 0 auto 28px;
}

/* ── FAQ ── */
.faq-section { padding: 80px 56px; border-bottom: 1px solid var(--border); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 400; font-style: italic; margin-bottom: 36px;
}
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 1rem; color: var(--ink); font-weight: 400;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; user-select: none;
}
.faq-q span { flex-shrink: 0; color: var(--dim); font-size: 1rem; transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { font-size: 0.95rem; color: var(--mid); line-height: 1.9; margin-top: 14px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-layout {
  max-width: 1200px; margin: 0 auto; padding: 80px 56px;
  display: grid; grid-template-columns: 1fr 360px; gap: 80px;
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 400; font-style: italic; margin-bottom: 8px;
}
.contact-form-wrap > p { font-size: 1rem; color: var(--mid); line-height: 1.9; margin-bottom: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  padding: 10px 0; font-family: 'Jost', sans-serif;
  font-size: 0.86rem; font-weight: 300; color: var(--ink);
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.btn-submit {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink); border-top: none; border-left: none; border-right: none;
  padding-bottom: 2px; background: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 300; transition: opacity 0.25s;
}
.btn-submit:hover { opacity: 0.45; }
.contact-aside h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; font-style: italic; margin-bottom: 20px;
}
.contact-detail { margin-bottom: 32px; }
.contact-detail h4 {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 8px;
}
.contact-detail p { font-size: 1rem; color: var(--mid); line-height: 1.8; }
.contact-detail a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--ink); }

/* ── BLOG ARTICLE ── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 72px 56px 96px; }
.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 8px; }
.article-meta .blog-cat { margin-bottom: 0; }
.article-meta .date {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim);
}
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 400; font-style: italic;
  line-height: 1.25; margin-bottom: 40px; color: var(--ink);
}
.article-body { font-size: 1rem; color: var(--mid); line-height: 2.05; }
.article-body p { margin-bottom: 22px; }
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 400; font-style: italic;
  color: var(--ink); margin: 40px 0 16px;
}
.article-body blockquote {
  border-left: 2px solid var(--border); padding-left: 24px;
  margin: 32px 0; font-style: italic; color: var(--ink);
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
}
.article-footer {
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.back-link {
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.back-link:hover { color: var(--ink); }
.related-posts { padding: 80px 56px; background: var(--bg2); border-top: 1px solid var(--border); }
.related-posts-inner { max-width: 1200px; margin: 0 auto; }
.related-posts h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400; font-style: italic; margin-bottom: 36px;
}
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ── HAMBURGER (hidden on desktop) ── */
.nav-hamburger { display: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* NAV */
  .nav-inner {
    padding: 0 20px; min-height: 64px; height: auto;
    flex-wrap: wrap; align-content: flex-start;
  }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
    margin-left: auto; height: 64px; flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block; width: 20px; height: 1px;
    background: var(--ink); transition: all 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  nav.open .nav-links {
    display: flex; flex-direction: column;
    width: 100%; flex-basis: 100%;
    padding: 4px 0 16px; border-top: 1px solid var(--border); gap: 0;
  }
  nav.open .nav-right { display: block; width: 100%; flex-basis: 100%; padding: 0 0 24px; }
  nav.open .nav-links > a { display: block; padding: 13px 0; border-bottom: 1px solid var(--border); }
  nav.open .nav-item { flex-direction: column; align-items: flex-start; width: 100%; }
  nav.open .nav-item > a { display: block; padding: 13px 0; border-bottom: 1px solid var(--border); width: 100%; }
  nav.open .nav-dropdown {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    min-width: auto; width: 100%; border: none; padding-top: 0;
    background: none; backdrop-filter: none;
  }
  nav.open .nav-dropdown a { padding: 10px 0 10px 16px; border-bottom: 1px solid var(--border); }
  nav.open .nav-dropdown a:last-child { border-bottom: 1px solid var(--border); }
  nav.open .nav-right a { font-size: 0.72rem; display: block; }

  /* PAGE HERO */
  .page-hero-overlay { padding: 24px 20px; }

  /* SECTION HEADS */
  .sec-head { padding: 0 20px; flex-direction: column; gap: 10px; align-items: flex-start; }
  .port-head { padding: 0 20px; flex-direction: column; gap: 10px; align-items: flex-start; }
  .port-filters { padding: 0 20px; flex-wrap: wrap; }

  /* SERVICES */
  .services { padding: 64px 0; }
  .svc-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 36px; }

  /* SERVICE SPLIT */
  .svc-split { grid-template-columns: 1fr; height: auto; }
  .svc-split.reverse { direction: ltr; }
  .svc-split-img { height: 280px; }
  .svc-split-text { padding: 48px 20px; }

  /* PORTFOLIO */
  .portfolio { padding: 64px 0; }
  .port-grid {
    grid-template-columns: repeat(2, 1fr); padding: 0 20px;
    grid-auto-rows: 180px;
  }

  /* BLOG */
  .blog { padding: 64px 0; }
  .blog-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }

  /* SERVICE GALLERY */
  .svc-gallery-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .svc-gallery-inner .gc.tall { aspect-ratio: 4/3; }

  /* FOOTER CTA */
  .footer-cta { padding: 64px 20px; }

  /* FOOTER */
  footer { padding: 48px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  /* ABOUT */
  .about-intro { padding: 64px 20px; }
  .about-story { grid-template-columns: 1fr; }
  .about-story-img { min-height: 280px; }
  .about-story-text { padding: 48px 20px; }
  .values-strip { padding: 56px 20px; }
  .values-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .pull-quote { padding: 64px 20px; }

  /* PRICING */
  .pricing-block { padding: 48px 20px; }

  /* FAQ */
  .faq-section { padding: 56px 20px; }

  /* CONTACT */
  .contact-layout { grid-template-columns: 1fr; gap: 48px; padding: 48px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* ARTICLE */
  .article-wrap { padding: 40px 20px 64px; }
  .related-posts { padding: 56px 20px; }
  .related-grid { grid-template-columns: 1fr; }

  /* BRANDS TICKER */
  .brands { padding: 40px 0; }

  /* COOKIE BANNER */
  #cookie-banner { padding: 16px 20px !important; flex-direction: column !important; gap: 14px !important; align-items: flex-start !important; }
}
