/* ═══════════════════════════════════════
   TOKENS & RESET (Light Mode - Default)
═══════════════════════════════════════ */
:root {
  --paper:      #F1EAD9; 
  --paper-alt:  #E8DFCC;
  --bg-card:    #FAECE0;
  --ink:        #1A1A1A;
  --ink-deep:   #100D0A;
  --red:        #E9342C; 
  --muted:      #8B8476;
  --rule:       rgba(26,22,18,0.14);
  --rule-light: rgba(26,22,18,0.07);

  /* SVG Specific Variables */
  --svg-bg-1:   #D8D0BC;
  --svg-bg-2:   #D0C9B5;
  --svg-bg-3:   #D5CDB8;
  --svg-stroke: rgba(26,22,18,0.1);
  --svg-text:   rgba(26,22,18,0.08);
  --svg-accent: rgba(240,101,77,0.4);
  --svg-accent-solid: rgba(240,101,77,0.5);

  --body:       'Inter Tight', system-ui, sans-serif;
  --display:    'Playfair Display', Georgia, serif;
  --mono:       'Courier Prime', 'Courier New', monospace;

  /* ▼▼▼ HOW TO ADJUST LEFT/RIGHT SPACING ▼▼▼ */
  --pad-x: 48px; 
  --edge-space: max(var(--pad-x), calc(50% - 600px)); 
  /* ▲▲▲ HOW TO ADJUST LEFT/RIGHT SPACING ▲▲▲ */
}

/* ═══════════════════════════════════════
   DARK MODE OVERRIDES
═══════════════════════════════════════ */
[data-theme="dark"] {
  --paper:      #121212; 
  --paper-alt:  #1A1A1A;
  --bg-card:    #161616;
  --ink:        #F1EAD9;
  --ink-deep:   #0A0A0A;
  --muted:      #9E978E;
  --rule:       rgba(241, 234, 217, 0.15);
  --rule-light: rgba(241, 234, 217, 0.08);

  /* SVG Specific Variables (Dark) */
  --svg-bg-1:   #1E1E1E;
  --svg-bg-2:   #242424;
  --svg-bg-3:   #1B1B1B;
  --svg-stroke: rgba(241, 234, 217, 0.15);
  --svg-text:   rgba(241, 234, 217, 0.15);
  --svg-accent: rgba(240,101,77,0.6);
  --svg-accent-solid: rgba(240,101,77,0.8);
}

/* Transition for smooth dark mode switching */
body, .section-alt, .work-card, .navbar, footer, .review-card, .cs-card {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--paper); scroll-behavior: smooth; }

em{
  color: var(--red);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

main, nav, footer, section, header { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   THEME TOGGLE BUTTON
═══════════════════════════════════════ */
.theme-toggle {
  background: transparent;
  border: none;
  color: #F1EAD9; /* Keeps icon light to contrast the dark navbar */
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.theme-toggle:hover { opacity: 1; }
.theme-toggle svg { width: 18px; height: 18px; }

/* Hide sun/moon depending on theme */
:root:not([data-theme="dark"]) .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: none; }

/* ═══════════════════════════════════════
   TYPOGRAPHY & EYEBROWS
═══════════════════════════════════════ */
.display-mixed {
  font-family: var(--body);
  font-weight: 800;
  font-size: clamp(3.2rem, 7.5vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 2rem;
}
.display-mixed em { font-family: var(--display); font-weight: 400; font-style: italic; letter-spacing: -0.02em; }
.dot { color: var(--red); }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.section-eyebrow .line { display: block; width: 28px; height: 1px; background-color: var(--red); }
.section-eyebrow .text { color: var(--red); }
.section-eyebrow .sep, .section-eyebrow .num { color: var(--muted); }

.label, .label-red {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.label { color: var(--muted); }
.label-red { color: var(--red); }

.container { padding: 0 var(--edge-space); }
.rule { width: 100%; height: 1px; background: var(--rule); }

/* Buttons */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper); /* Text inside button uses background color */
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  font-weight: 400;
}
.btn-primary:hover { background: var(--red); border-color: var(--red); color: #fff; }

.btn-ghost {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  background: none;
  border: none;
}
.btn-ghost:hover { color: var(--ink); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--edge-space);
  height: 60px;
}

.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #F1EAD9; } 
/* .nav-logo-mark { width: 9px; height: 9px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.nav-logo-text { font-family: var(--display); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.01em; color: #F1EAD9; } */

.nav-logo-img { 
  height: 38px; /* Adjust this value to make your logo bigger or smaller */
  width: auto; 
  display: block; 
}
.nav-links { display: flex; list-style: none; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: #F1EAD9; }

.navbar .nav-cta {
  color: var(--ink-deep);
  background: #F1EAD9; 
  padding: 9px 20px;
  transition: background 0.25s, color 0.25s;
}
.navbar .nav-cta:hover { background: var(--red); color: #fff; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  z-index: 600;
}
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: #F1EAD9; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px var(--edge-space) 120px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.hero-ghost {
  position: absolute;
  top: 40%; 
  left: var(--edge-space); 
  right: var(--edge-space);
  transform: translateY(-52%);
  font-family: var(--body);
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ═══════════════════════════════════════
   FLOATING HERO IMAGE CONTROL
═══════════════════════════════════════ */
.hero-floating-img {
  position: absolute; /* Frees the image from the standard layout */
  
  /* --- POSITION CONTROLS (Tweak these numbers!) --- */
  top: 15%;         /* Pushes it down from the top. Use px or % */
  right: 5%;        /* Pushes it in from the right edge. Use px or % */
  
  /* --- SIZE CONTROLS --- */
  width: 200px;     /* Change this to make the image larger or smaller */
  height: auto;     /* Keeps the image proportions perfect */
  
  /* --- LAYERING & BLENDING --- */
  z-index: 1;       /* Keeps it behind your text (z-index 2) but above the background */
  pointer-events: none; /* Ensures the image doesn't block users from clicking links below it */
  
  /* Optional: Kitsch/Vintage styling */
  mix-blend-mode: multiply; /* Blends it nicely into the background color */
  filter: drop-shadow(8px 8px 0px rgba(0,0,0,0.2)); /* Retro shadow */
}



.hero-bottom { position: relative; z-index: 2; }
.hero-headline-wrap { opacity: 0; animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards; }

.hero-bottom-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  opacity: 0; animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  margin-top: 40px;
}
.hero-para { max-width: 380px; font-size: 1.05rem; line-height: 1.6; color: var(--muted); font-weight: 500; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section { padding: 120px 0; border-bottom: 1px solid var(--rule); }
.section-alt { background: var(--paper-alt); }

/* WORK */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--rule); }
.work-card { background: var(--paper); overflow: hidden; cursor: pointer; position: relative; }
.work-card-img { width: 100%; aspect-ratio: 4/3; background: var(--svg-bg-2); position: relative; overflow: hidden; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.work-card-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.1) 100%); pointer-events: none; }
.work-card-img svg { width: 100%; height: 100%; transition: all 0.4s ease; }
.work-card:hover .work-card-img { transform: scale(1.03); }
.work-card-body { padding: 24px 24px 28px; border-top: 1px solid var(--rule); }
.work-card-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.work-card-title { font-family: var(--body); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }

/* new work */
/* Add this anywhere in your CSS (e.g., near your image/svg styles) */
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Fills the box, crops the excess height/width */
  object-position: center; /* Ensures the image stays perfectly centered */
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card-img { 
  width: 100%; 
  aspect-ratio: 4/3; 
  background: var(--svg-bg-2); 
  position: relative; 
  overflow: hidden; /* This cuts off the image */
}
/* Optional: Keep the nice zoom effect on hover for work cards */
.work-card:hover .cover-img { 
  transform: scale(1.05); 
}

/* SERVICES */
.services-list { display: flex; flex-direction: column; }
.service-row { display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--rule); transition: background 0.25s; cursor: default; }
.service-row:first-child { border-top: 1px solid var(--rule); }
.service-row:hover { background: var(--rule-light); padding-left: 12px; padding-right: 12px; margin: 0 -12px; border-radius: 2px; }
.service-name { font-family: var(--body); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.service-meta { text-align: right; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-portrait { aspect-ratio: 3/4; background: var(--svg-bg-1); border: 1px solid var(--rule); position: relative; overflow: hidden; max-height: 500px; }
.about-portrait svg { width: 100%; height: 100%; transition: all 0.4s ease; }
.about-portrait::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 40px;
  background: linear-gradient(135deg, transparent 50%, var(--rule) 50%); pointer-events: none;
}
.about-body { font-size: 1.05rem; line-height: 1.7; color: var(--muted); font-weight: 500; margin-bottom: 40px; }
.about-body-services { font-size: 1.05rem; line-height: 1.7; color: var(--muted); font-weight: 500; margin-bottom: 20px; }

/* new image */
.about-portrait-seamless { 
  position: relative; 
  width: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Image styles to ensure it scales perfectly and doesn't get cut off */
.seamless-img {
  width: 100%;
  max-width: 950px; /* Stops it from getting too massive on huge screens */
  height: auto;
  object-fit: contain;
  /* Optional: Adds a beautiful realistic shadow so the PNG pops off the page */
  filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.15));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle floating effect on hover */
.seamless-img:hover {
  transform: translateY(-8px) scale(1.02);
}

/* ═══════════════════════════════════════
   TESTIMONIALS (AUTO CAROUSEL)
═══════════════════════════════════════ */
.carousel-wrapper {
  position: relative;
  margin-top: 64px;
  overflow: hidden;
  /* Mask applied correctly to fade left and right edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  /* Total time to scroll half the track completely (infinite loop) */
  animation: scroll-infinite 35s linear infinite;
}

/* Pause scroll on hover so user can read */
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scroll-infinite {
  from { transform: translateX(0); }
  /* We shift by 50% of the total track length (since we duplicated items) minus half the gap */
  to   { transform: translateX(calc(-50% - 12px)); }
}

.review-card {
  width: 380px;
  flex-shrink: 0;
  padding: 36px 32px;
  background: var(--bg-card); 
  border: 1px solid var(--rule);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--svg-bg-2); /* acts as image placeholder */
  border: 1px solid var(--rule);
}

.review-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}

.review-title {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════ */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.cs-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.cs-card:hover {
  transform: translateY(-8px);
}

.cs-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--rule);
  background: var(--svg-bg-1);
  overflow: hidden;
}

.cs-img-wrap svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-card:hover .cs-img-wrap svg {
  transform: scale(1.05);
}

.cs-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cs-title {
  font-family: var(--body);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.cs-desc {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}

.btn-text:hover {
  color: var(--red);
  border-color: var(--red);
}

/* ═══════════════════════════════════════
   CONTACT & FORMS
═══════════════════════════════════════ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-intro { padding-top: 8px; }
.contact-sub { font-size: 1.05rem; line-height: 1.7; color: var(--muted); margin-bottom: 48px; font-weight: 500; }
.contact-detail { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.contact-detail-item { display: flex; align-items: center; gap: 12px; }
.contact-detail-rule { width: 20px; height: 1px; background: var(--red); flex-shrink: 0; }
.contact-detail-text { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--muted); }

.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea { background: transparent; border: 1px solid var(--rule); color: var(--ink); font-family: var(--body); font-size: 0.95rem; padding: 14px 16px; transition: border-color 0.25s; border-radius: 0; outline: none; width: 100%; appearance: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--ink); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.5; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 8px; align-self: flex-start; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { 
  background: var(--ink-deep); 
  padding: 56px var(--edge-space) 40px; 
  border-top: 3px solid var(--red); 
}
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-bottom: 14px; }
.footer-logo-mark { width: 9px; height: 9px; background: var(--red); border-radius: 50%; }
.footer-logo-text { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: #F1EAD9; }
.footer-tagline { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; color: rgba(242,237,224,0.3); text-transform: uppercase; }
.footer-links { display: flex; gap: 40px; }
.footer-links a { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,237,224,0.4); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: #F1EAD9; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy, .footer-loc { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(242,237,224,0.2); }

/* ═══════════════════════════════════════
   APPLE-SMOOTH SCROLL REVEALS & ANIMATIONS
═══════════════════════════════════════ */
.reveal { 
  opacity: 0; 
  transform: translateY(40px); 
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); 
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  :root {
    --pad-x: 28px;
    --edge-space: max(var(--pad-x), calc(50% - 572px));
  }

  .hero { padding-top: 100px; padding-bottom: 60px; }

  .nav-links {
    position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
    background: var(--ink-deep); flex-direction: column; justify-content: center;
    align-items: center; gap: 40px; transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); z-index: 599;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.85rem; color: rgba(242,237,224,0.7); }
  .navbar .nav-cta { color: var(--ink-deep); background: var(--red); padding: 12px 28px; }

  .menu-toggle { display: flex; }

  /* Update Grids for Mobile */
  .work-grid, .about-grid, .contact-wrap, .form-row, .cs-grid { grid-template-columns: 1fr; }
  
  .about-grid { gap: 40px; }
  .about-portrait-seamless { margin-bottom: 24px; }
  .seamless-img { max-width: 75%; margin: 0 auto; display: block; }
  
  .review-card { width: 85vw; /* Fit nicely on mobile screens */ }
  
  .contact-wrap { gap: 48px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .service-row { grid-template-columns: 60px 1fr; gap: 20px; }
  .service-meta { display: none; }

  /* Scale down the floating image and push it to the background */
  .hero-floating-img {
    width: 150px;
    top: 10%;
    right: -5%; /* Let it bleed off the edge slightly */
    opacity: 0.3; /* Fade it so text remains readable */
    /* Use display: none; instead if you want to completely hide it on phones */
  }
}

@media (max-width: 480px) {
  .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-actions { align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .seamless-img { max-width: 90%; }
}