/* ============================================================
   VELTHAUS STUDIO — SHARED STYLESHEET
   Theme: Neobrutalist Luxury
   
   HOW TO MAKE YOUR OWN CHANGES:
   ─────────────────────────────
   1. COLORS → Edit the :root variables below (lines 20–35)
   2. FONTS  → Change the Google Fonts link in each HTML <head>
              and update --ff-display / --ff-body variables
   3. SPACING → Edit --gap, padding values in section rules
   4. BORDERS → Change --border thickness/color
   5. SHADOWS → Change --shadow values
   
   Each section is clearly labeled with comments like:
   ═══ NAV ═══, ═══ HERO ═══, ═══ FOOTER ═══ etc.
   Find the section you want to change and edit it there.
============================================================ */

/* ════════════════════════════
   1. CSS VARIABLES (Edit here to change the whole site)
════════════════════════════ */
:root {
  /* — Core Colors — */
  --bone:    #F2EDE4;   /* Main background */
  --ink:     #1A1714;   /* Text + borders  */
  --rust:    #B5432A;   /* Primary accent  */
  --forest:  #2D4A3E;   /* Secondary accent */
  --gold:    #C8A96E;   /* Highlight color */
  --warm:    #E8E0D4;   /* Secondary bg    */
  --mid:     #9A8F82;   /* Muted text      */
  --white:   #FDFCFA;   /* Card backgrounds */

  /* — Borders & Shadows — */
  --border:     3px solid var(--ink);
  --border-thin: 1.5px solid var(--ink);
  --shadow:     6px 6px 0px var(--ink);
  --shadow-sm:  3px 3px 0px var(--ink);

  /* — Typography — */
  --ff-display: 'Bebas Neue', sans-serif;   /* Headlines */
  --ff-serif:   'DM Serif Display', serif;  /* Pull quotes */
  --ff-body:    'DM Sans', sans-serif;      /* Body text  */
  --ff-ui:      'Space Grotesk', sans-serif;/* Labels/UI  */

  /* — Transitions — */
  --trans: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════
   2. RESET & BASE
════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-ui); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bone); }
::-webkit-scrollbar-thumb { background: var(--ink); }

/* ════════════════════════════
   3. COOKIE BANNER
   (To change position: swap 'bottom:0' to 'top:0')
════════════════════════════ */
#cookie-bar {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
  background: var(--ink); color: var(--bone);
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-top: var(--border);
  font-family: var(--ff-ui); font-size: .78rem; letter-spacing: .03em;
}
#cookie-bar a { color: var(--gold); text-decoration: underline; }
#cookie-ok {
  background: var(--rust); color: var(--white);
  border: 2px solid var(--white);
  padding: 8px 22px;
  font-family: var(--ff-ui); font-size: .78rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: background var(--trans), color var(--trans);
}
#cookie-ok:hover { background: var(--gold); color: var(--ink); }

/* ════════════════════════════
   4. NAVIGATION
   (To change nav height: edit height:68px and .pt padding-top)
════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 800;
  background: var(--bone);
  border-bottom: var(--border);
  display: flex; align-items: stretch;
  height: 68px;
}
.nav-logo-block {
  border-right: var(--border);
  padding: 0 32px;
  display: flex; align-items: center;
  font-family: var(--ff-display); font-size: 1.5rem; letter-spacing: .06em;
  cursor: pointer; user-select: none;
  transition: background var(--trans);
  min-width: 200px;
}
.nav-logo-block:hover { background: var(--ink); color: var(--bone); }
.nav-logo-block span { color: var(--rust); }
.nav-links-block { display: flex; align-items: stretch; flex: 1; }
.nav-links-block a {
  display: flex; align-items: center;
  padding: 0 24px;
  border-right: var(--border-thin);
  font-family: var(--ff-ui); font-size: .75rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background var(--trans), color var(--trans);
}
.nav-links-block a:hover,
.nav-links-block a.active { background: var(--ink); color: var(--bone); }
.nav-cta-block {
  margin-left: auto;
  background: var(--rust); color: var(--white);
  border-left: var(--border);
  padding: 0 32px;
  display: flex; align-items: center;
  font-family: var(--ff-ui); font-size: .75rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: background var(--trans);
  white-space: nowrap; cursor: pointer;
}
.nav-cta-block:hover { background: var(--forest); }
.hamburger {
  display: none; align-items: center; padding: 0 20px;
  border-left: var(--border); cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: all .3s; }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; width: 100%;
  background: var(--ink); z-index: 790; border-bottom: var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 16px 32px;
  font-family: var(--ff-ui); font-size: .85rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bone); border-bottom: 1px solid rgba(242,237,228,.12);
  transition: background var(--trans);
}
.mobile-nav a:hover { background: var(--rust); }

/* Push page content below fixed nav */
.pt { padding-top: 68px; }

/* ════════════════════════════
   5. AD SLOTS
   (These are placeholder containers for your ad units)
   Add your ad code inside <div class="ad-slot-..."> in HTML
════════════════════════════ */
.ad-slot-banner {
  /* Leaderboard 728×90 or responsive */
  width: 100%;
  min-height: 90px;
  background: var(--warm);
  border-top: var(--border-thin);
  border-bottom: var(--border-thin);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-ui); font-size: .7rem;
  color: var(--mid); letter-spacing: .12em; text-transform: uppercase;
  overflow: hidden;
}
.ad-slot-square {
  /* 300×250 Medium Rectangle */
  width: 300px; min-height: 250px;
  background: var(--warm);
  border: var(--border-thin);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-ui); font-size: .7rem;
  color: var(--mid); letter-spacing: .12em; text-transform: uppercase;
  margin: 0 auto;
  overflow: hidden;
}
.ad-slot-sidebar {
  /* 160×600 Wide Skyscraper */
  width: 160px; min-height: 600px;
  background: var(--warm);
  border: var(--border-thin);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-ui); font-size: .7rem;
  color: var(--mid); letter-spacing: .12em; text-transform: uppercase;
  overflow: hidden;
}
/* Ad label (required for disclosure) */
.ad-label {
  font-family: var(--ff-ui); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); text-align: center;
  padding: 4px 0; display: block;
}

/* ════════════════════════════
   6. SECTION BASE STYLES
════════════════════════════ */
section { border-bottom: var(--border); }
.sec-pad { padding: 96px 48px; }
.sec-eyebrow {
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--rust);
  margin-bottom: 16px;
}
.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: .04em; line-height: 1.05; color: var(--ink);
  margin-bottom: 24px;
}
.sec-serif {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.25; color: var(--ink); margin-bottom: 20px;
}
.sec-body {
  font-size: .95rem; color: #4a433c;
  line-height: 1.85; max-width: 560px;
}

/* ════════════════════════════
   7. BUTTONS
   (To change CTA color: edit .btn-rust background)
════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--ff-ui); font-size: .78rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border: var(--border);
  background: var(--ink); color: var(--bone);
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans),
              background var(--trans), color var(--trans);
}
.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px var(--ink);
  background: var(--rust); color: var(--white);
}
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-rust { background: var(--rust); color: var(--white); }
.btn-rust:hover { background: var(--forest); }

/* ════════════════════════════
   8. SCROLL REVEAL ANIMATION
   (To disable: remove 'reveal' class from HTML elements)
════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════
   9. FORMS (shared across all pages)
════════════════════════════ */
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.fl {
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
}
.fi {
  padding: 13px 16px; border: var(--border-thin); background: var(--bone);
  font-family: var(--ff-body); font-size: .92rem; color: var(--ink);
  outline: none; transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
.fi:focus { border-color: var(--rust); box-shadow: 3px 3px 0 var(--rust); }
textarea.fi { resize: vertical; min-height: 120px; }
select.fi { cursor: pointer; }
.consent-row {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 24px; font-size: .82rem; color: #5a5048;
}
.consent-row input { accent-color: var(--rust); margin-top: 3px; flex-shrink: 0; }
.consent-row a { color: var(--rust); text-decoration: underline; }

/* ════════════════════════════
   10. TICKER / MARQUEE
════════════════════════════ */
.ticker {
  background: var(--ink); color: var(--bone);
  overflow: hidden; white-space: nowrap;
  border-bottom: var(--border); padding: 14px 0;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: .1em;
  padding: 0 40px; display: flex; align-items: center; gap: 16px;
}
.ticker-item::after { content: '✦'; color: var(--rust); font-size: .8rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════
   11. PORTFOLIO GRID
════════════════════════════ */
.port-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 260px;
}
.port-item {
  border-right: var(--border); border-bottom: var(--border);
  overflow: hidden; position: relative; cursor: pointer;
}
.port-item:nth-child(3n) { border-right: none; }
.port-item.span-col { grid-row: 1 / 3; }
.port-item img { transition: transform .55s ease; height: 100%; }
.port-item:hover img { transform: scale(1.08); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--trans);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-tag {
  font-family: var(--ff-ui); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.port-name {
  font-family: var(--ff-display); font-size: 1.3rem;
  letter-spacing: .05em; color: var(--white);
}

/* ════════════════════════════
   12. TESTIMONIALS
════════════════════════════ */
.testi-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
.testi-card {
  border-right: var(--border); padding: 56px 40px;
  display: flex; flex-direction: column; gap: 24px;
  transition: background var(--trans);
}
.testi-card:last-child { border-right: none; }
.testi-card:hover { background: var(--forest); }
.testi-card:hover .testi-text,
.testi-card:hover .testi-name { color: var(--bone); }
.testi-card:hover .testi-loc { color: rgba(242,237,228,.6); }
.testi-stars { color: var(--gold); letter-spacing: 4px; font-size: .9rem; }
.testi-text {
  font-family: var(--ff-serif); font-size: 1rem;
  font-style: italic; color: #3a3530; line-height: 1.8;
  transition: color var(--trans);
}
.testi-name {
  font-family: var(--ff-ui); font-size: .82rem;
  font-weight: 600; letter-spacing: .06em; transition: color var(--trans);
}
.testi-loc {
  font-family: var(--ff-ui); font-size: .72rem;
  color: var(--mid); letter-spacing: .08em; transition: color var(--trans);
}
.testi-disclaimer {
  padding: 16px 48px; background: var(--warm);
  font-family: var(--ff-ui); font-size: .72rem;
  color: var(--mid); font-style: italic;
  border-top: var(--border-thin); text-align: center;
}

/* ════════════════════════════
   13. CTA BAND
════════════════════════════ */
.cta-band {
  background: var(--rust); color: var(--white);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px; padding: 72px 48px;
  border-bottom: var(--border);
}
.cta-band-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: .04em; line-height: 1.05;
}
.cta-band .btn {
  border-color: var(--white); background: var(--white);
  color: var(--ink); box-shadow: 6px 6px 0 rgba(26,23,20,.35);
}
.cta-band .btn:hover { background: var(--ink); color: var(--white); }

/* ════════════════════════════
   14. MODAL
════════════════════════════ */
.modal-mask {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,23,20,.7);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-mask.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border: var(--border);
  box-shadow: 10px 10px 0 var(--ink);
  max-width: 560px; width: 100%; padding: 52px 48px;
  position: relative; max-height: 90vh; overflow-y: auto;
  transform: translateY(30px); transition: transform .35s ease;
}
.modal-mask.open .modal-box { transform: translateY(0); }
.modal-x {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border: var(--border-thin);
  background: var(--bone); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans); cursor: pointer;
}
.modal-x:hover { background: var(--rust); color: var(--white); }
.modal-eyebrow {
  font-family: var(--ff-ui); font-size: .68rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 8px;
}
.modal-title {
  font-family: var(--ff-display); font-size: 1.8rem;
  letter-spacing: .04em; color: var(--ink); margin-bottom: 8px;
}
.modal-sub {
  font-size: .88rem; color: var(--mid);
  margin-bottom: 32px; line-height: 1.7;
}
.modal-success { display: none; text-align: center; padding: 24px 0; }
.modal-success .s-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal-success h3 {
  font-family: var(--ff-display); font-size: 1.6rem;
  letter-spacing: .04em; margin-bottom: 8px;
}
.modal-success p { font-size: .88rem; color: var(--mid); line-height: 1.7; }

/* ════════════════════════════
   15. FOOTER
════════════════════════════ */
footer { background: var(--ink); color: var(--bone); border-top: var(--border); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: var(--border);
}
.footer-col { border-right: var(--border); padding: 56px 40px; }
.footer-col:last-child { border-right: none; }
.footer-logo {
  font-family: var(--ff-display); font-size: 1.8rem;
  letter-spacing: .06em; margin-bottom: 16px;
}
.footer-logo span { color: var(--rust); }
.footer-tagline {
  font-size: .88rem; color: rgba(242,237,228,.55);
  line-height: 1.75; max-width: 240px;
}
.footer-col-title {
  font-family: var(--ff-ui); font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .86rem; color: rgba(242,237,228,.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--bone); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px; flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-family: var(--ff-ui); font-size: .75rem;
  color: rgba(242,237,228,.35);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--ff-ui); font-size: .72rem;
  color: rgba(242,237,228,.35); text-decoration: underline;
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--gold); }

/* ════════════════════════════
   16. LEGAL PAGES
════════════════════════════ */
.legal-hero {
  padding: 96px 48px 64px; border-bottom: var(--border);
  background: var(--ink); color: var(--bone);
}
.legal-body { padding: 64px 48px; max-width: 860px; }
.legal-body h2 {
  font-family: var(--ff-display); font-size: 1.6rem;
  letter-spacing: .04em; margin: 40px 0 16px; color: var(--ink);
}
.legal-body p { font-size: .92rem; color: #4a433c; line-height: 1.9; margin-bottom: 16px; }
.legal-body ul li {
  font-size: .92rem; color: #4a433c; line-height: 1.9;
  padding-left: 20px; position: relative; margin-bottom: 8px;
}
.legal-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--rust); }

/* ════════════════════════════
   17. RESPONSIVE BREAKPOINTS
   (Edit max-width values to change when layout shifts)
════════════════════════════ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(2) { border-right: none; }
  .footer-col { border-bottom: var(--border); }
  .port-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .port-item.span-col { grid-row: auto; }
  .testi-strip { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: var(--border); }
  .cta-band { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .nav-links-block { display: none; }
  .nav-cta-block { display: none; }
  .hamburger { display: flex; }
  .sec-pad { padding: 64px 24px; }
  #cookie-bar { padding: 14px 24px; }
  .cta-band { padding: 56px 24px; }
  .testi-disclaimer { padding: 16px 24px; }
  .modal-box { padding: 36px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { border-right: none; padding: 36px 24px; }
  .footer-bottom { padding: 20px 24px; }
  .legal-hero { padding: 64px 24px; }
  .legal-body { padding: 48px 24px; }
  .port-grid { grid-template-columns: 1fr; }
}
