/* ─── Reset & base ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #f7f4ee;
  --bone: #ece6da;
  --ink: #161412;
  --soft-ink: #3d3833;
  --muted: #8a8278;
  --red: #c8312a;
  --red-deep: #8e1d18;
  --line: rgba(22,20,18,.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; line-height: 1; letter-spacing: -0.01em;
}
em { font-style: italic; color: var(--red); font-weight: 500; }
a { color: inherit; text-decoration: none; }

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  background: rgba(247,244,238,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 40px; }
.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; letter-spacing: 0.18em; font-weight: 600;
}
.logo .accent { color: var(--red); font-weight: 400; }
.site-header nav ul { display: flex; gap: 36px; list-style: none; justify-self: center; }
.site-header nav a {
  font-size: .8rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 400; transition: color .3s;
}
.site-header nav a:hover { color: var(--red); }
.nav-meta {
  font-size: .72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); justify-self: end;
}
.nav-right {
  justify-self: end;
  display: flex; align-items: center; gap: 24px;
}
.lang-switch {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
}
.lang-switch a { color: var(--muted); transition: color .3s; }
.lang-switch a:hover { color: var(--red); }
.lang-switch a.active { color: var(--ink); }
.lang-switch span { color: var(--muted); }
.nav-cta {
  font-size: .78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); padding: 10px 20px;
  border: 1px solid var(--ink); border-radius: 999px;
  transition: all .3s; font-weight: 500;
}
.nav-cta:hover { background: var(--red); border-color: var(--red); color: #fff; }
.marquee .dot { color: rgba(247,244,238,.35); }
.footer-lang {
  margin-top: 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: 0.15em;
}
.footer-lang a { color: rgba(247,244,238,.5); transition: color .3s; }
.footer-lang a:hover { color: #ff8a7e; }
.footer-lang a.active { color: var(--cream); }
.footer-lang span { color: rgba(247,244,238,.3); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 60px;
  overflow: hidden;
  color: #fff;
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url('/images/truck-scania-super.jpg');
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}
/* Fallback if image not yet saved: stylized industrial gradient */
.hero-image {
  background-color: #2a2826;
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.1) 50%, rgba(0,0,0,.55) 100%),
    url('/images/truck-scania-super.jpg');
  background-size: cover; background-position: center 55%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,20,18,.35) 0%, rgba(22,20,18,.55) 60%, rgba(22,20,18,.85) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: .78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 50px;
  font-weight: 400;
}
.line { width: 60px; height: 1px; background: var(--red); }
.hero-title {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 400;
  line-height: .95;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #ff8a7e;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-tag em { color: #ff8a7e; }
.hero-lead {
  font-size: 1.1rem;
  max-width: 540px;
  color: rgba(255,255,255,.85);
  font-weight: 300;
  margin-bottom: 44px;
}
.hero-cta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-size: .8rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  transition: all .3s;
  border: 1px solid var(--red);
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ghost {
  font-size: .85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; padding: 18px 8px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  transition: all .3s;
}
.btn-ghost:hover { border-bottom-color: var(--red); color: var(--red); }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 32px 40px 0;
  max-width: 1320px;
  margin-left: auto; margin-right: auto;
  gap: 40px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 400;
  color: #fff; line-height: 1;
}
.hero-stats span {
  font-size: .78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 8px;
}

/* ─── Marquee ─── */
.marquee {
  overflow: hidden; padding: 28px 0;
  background: var(--ink); color: var(--cream);
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-style: italic; color: rgba(247,244,238,.9);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Sections ─── */
.section { padding: 130px 0; }
.section-header { margin-bottom: 80px; max-width: 880px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.overline {
  display: inline-block;
  font-size: .75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 28px;
  font-family: 'Inter', sans-serif; font-weight: 500;
}
.overline-light { color: rgba(247,244,238,.6); }
.section h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 400;
  margin-bottom: 24px;
}
.section-lead {
  font-size: 1.1rem; color: var(--soft-ink);
  max-width: 580px;
}
.section-lead.light { color: rgba(247,244,238,.75); }
.section-header.center .section-lead { margin-left: auto; margin-right: auto; }

/* ─── Assortment ─── */
.cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 48px;
}
.cat-card { display: flex; flex-direction: column; }
.cat-img {
  aspect-ratio: 5/4;
  margin-bottom: 24px;
  background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.cat-card:hover .cat-img { transform: scale(1.015); }
.cat-1 {
  background-image: url('/images/tile-marble-white.jpg');
  background-color: #ece6da;
  background-size: cover; background-position: center;
}
.cat-2 {
  background-image: url('/images/bathroom-marble.jpg');
  background-color: #3d3833;
  background-size: cover; background-position: center;
}
.cat-3 {
  background-image: url('/images/tile-travertin.jpg');
  background-color: #d4c5a9;
  background-size: cover; background-position: center;
}
.cat-4 {
  background-image: url('/images/tile-marble-beige.jpg');
  background-color: #c9b89c;
  background-size: cover; background-position: center;
}
.cat-info { padding: 0 4px; }
.cat-card.cat-text {
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--cream);
  padding: 80px 60px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.cat-card.cat-text .cat-info-text {
  display: contents;
}
.cat-card.cat-text .cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 5rem;
  color: #ff8a7e; line-height: 1;
  margin: 0; padding-right: 60px;
  border-right: 1px solid rgba(247,244,238,.18);
}
.cat-card.cat-text h3 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  color: var(--cream); margin: 0 0 18px;
  line-height: 1.05; font-weight: 400;
  grid-column: 2;
}
.cat-card.cat-text h3 em { color: #ff8a7e; }
.cat-card.cat-text p {
  color: rgba(247,244,238,.7);
  font-size: 1.05rem;
  max-width: 600px;
  grid-column: 2;
  margin: 0;
}
@media (max-width: 700px) {
  .cat-card.cat-text {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 32px;
  }
  .cat-card.cat-text .cat-num {
    border-right: none; padding-right: 0;
    font-size: 3rem;
  }
  .cat-card.cat-text h3, .cat-card.cat-text p { grid-column: 1; }
}
.cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem;
  color: var(--red);
}
.cat-info h3 {
  font-size: 2rem;
  margin: 12px 0 12px;
  font-weight: 500;
}
.cat-info p { font-size: .98rem; color: var(--muted); max-width: 440px; }

/* ─── Contact strip (between sections) ─── */
.contact-strip {
  margin-top: 80px;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--ink);
  font-style: italic;
}
.contact-strip.dark { border-color: rgba(247,244,238,.15); }
.contact-strip.dark p { color: var(--cream); }
.btn-link {
  font-size: .8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); padding: 14px 28px;
  border: 1px solid var(--ink); border-radius: 999px;
  transition: all .3s; font-weight: 500;
}
.btn-link:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn-link.light {
  color: var(--cream); border-color: var(--cream);
}
.btn-link.light:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ─── Transport ─── */
.transport {
  background: var(--ink);
  color: var(--cream);
}
.transport h2 { color: var(--cream); }
.transport em { color: #ff6a5e; }

.fleet-hero {
  aspect-ratio: 21/9;
  background-image:
    linear-gradient(0deg, rgba(22,20,18,.35), rgba(22,20,18,0) 40%),
    url('/images/truck-david.jpg');
  background-color: #2a2826;
  background-size: cover; background-position: center;
  margin-bottom: 6px;
}
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-bottom: 80px;
}
.fleet-img {
  aspect-ratio: 4/5;
  background-color: #2a2826;
  background-size: cover; background-position: center;
}
.fleet-1 { background-image: url('/images/truck-loaded.jpg'); }
.fleet-2 { background-image: url('/images/truck-loading.jpg'); }
.fleet-3 { background-image: url('/images/truck-2401.jpg'); }

.fleet-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(247,244,238,.15);
}
.feature .feat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-style: italic;
  color: var(--red); display: block; margin-bottom: 20px;
}
.feature h4 {
  font-size: 1.4rem; font-weight: 500;
  margin-bottom: 12px; color: var(--cream);
}
.feature p { font-size: .95rem; color: rgba(247,244,238,.65); }

/* ─── Warehouse strip ─── */
.warehouse {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.warehouse-img {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(22,20,18,.85) 0%, rgba(22,20,18,.45) 60%, rgba(22,20,18,.2) 100%),
    url('/images/warehouse.jpg');
  background-color: #1a1816;
  background-size: cover; background-position: center;
}
.warehouse-content { position: relative; padding: 120px 40px; }
.warehouse h2 { color: #fff; font-size: clamp(2.4rem, 5vw, 4.5rem); margin-bottom: 24px; }
.warehouse p { color: rgba(255,255,255,.85); max-width: 480px; font-size: 1.05rem; }
.warehouse .overline { color: #ff6a5e; }

/* ─── Family ─── */
.family { background: var(--bone); }
.split-image .ed-img {
  aspect-ratio: 4/5;
  background-image: url('/images/aerial.jpg');
  background-color: #b09d80;
  background-size: cover; background-position: center;
}
.split-image .caption {
  display: block; margin-top: 16px;
  font-size: .75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.split-text .body-text {
  font-size: 1.05rem; color: var(--soft-ink);
  margin-bottom: 22px; max-width: 520px;
}
.quote {
  margin: 40px 0; padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.45rem;
  color: var(--ink); line-height: 1.4;
  margin-bottom: 14px;
}
.quote span {
  font-size: .78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* ─── Contact ─── */
.contact { background: var(--ink); color: var(--cream); }
.contact h2 { color: var(--cream); }
.contact em { color: #ff6a5e; }
.body-text.light { color: rgba(247,244,238,.75); font-size: 1.05rem; max-width: 460px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }

.contact-info {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-info div {
  font-size: .95rem; color: rgba(247,244,238,.85);
  display: flex; gap: 14px; align-items: center;
}
.contact-info span { letter-spacing: 0.05em; }
.contact-info .ico {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(247,244,238,.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem; letter-spacing: 0;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  flex-shrink: 0;
}
.hours {
  margin-top: 28px; padding-top: 20px;
  font-size: .85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(247,244,238,.55);
  border-top: 1px solid rgba(247,244,238,.12);
}
.hours em { color: #ff8a7e; font-style: italic; text-transform: none; letter-spacing: 0.05em; }
.contact-people {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 36px; margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247,244,238,.12);
}
.contact-people .person { display: flex; flex-direction: column; gap: 6px; }
.contact-people .person-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem;
  color: #ff8a7e; margin-bottom: 8px;
}
.contact-people .person h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--cream);
  font-weight: 400; margin-bottom: 6px;
}
.contact-people .person a {
  font-size: .95rem; color: rgba(247,244,238,.85);
  text-decoration: none; transition: color .3s;
  letter-spacing: 0.02em;
}
.contact-people .person a:hover { color: #ff8a7e; }
@media (max-width: 600px) {
  .contact-people { grid-template-columns: 1fr; gap: 28px; }
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: .72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,244,238,.5);
}
.contact-form .optional { text-transform: none; letter-spacing: 0; color: rgba(247,244,238,.3); font-size: .7rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(247,244,238,.25);
  padding: 12px 0; color: var(--cream);
  font-family: 'Inter', sans-serif; font-size: 1rem;
  font-weight: 300;
}
.contact-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='rgba(247,244,238,.5)' fill='none' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 30px;
}
.contact-form select option { background: var(--ink); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-bottom-color: var(--red);
}
.contact-form button {
  align-self: flex-start; margin-top: 18px;
  background: var(--red); border: 1px solid var(--red);
  color: #fff; padding: 18px 44px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: all .3s; border-radius: 999px;
  font-weight: 500;
}
.contact-form button:hover { background: var(--red-deep); border-color: var(--red-deep); }
.contact-form button:disabled { background: #2a4a2a; border-color: #2a4a2a; cursor: default; }
.hidden-honeypot { display: none; }
.form-fallback {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(247,244,238,.12);
  font-size: .85rem; color: rgba(247,244,238,.55);
}
.form-fallback a {
  color: #ff8a7e; border-bottom: 1px solid rgba(255,138,126,.4);
  transition: color .3s;
}
.form-fallback a:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* ─── Footer ─── */
.site-footer { background: #0e0c0a; color: var(--cream); padding: 80px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,244,238,.12);
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.2em; font-weight: 600;
  margin-bottom: 16px;
}
.footer-tagline { color: rgba(247,244,238,.55); font-size: .9rem; line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols h5 {
  font-size: .72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,244,238,.45); margin-bottom: 14px; font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.footer-cols p { font-size: .92rem; line-height: 1.8; color: rgba(247,244,238,.8); }

.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px;
}
.footer-bottom small {
  font-size: .72rem; letter-spacing: 0.15em;
  color: rgba(247,244,238,.35); text-transform: uppercase;
}

/* ─── Thanks page ─── */
.thanks-page { background: var(--cream); }
.thanks {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 0;
}
.thanks h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  margin: 28px 0 24px;
  line-height: 1;
}
.thanks p {
  font-size: 1.15rem; color: var(--soft-ink);
  margin-bottom: 40px; max-width: 520px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .nav-meta, .site-header nav ul { display: none; }
  .hero { padding-top: 130px; min-height: auto; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px 0; }
  .hero-stats strong { font-size: 2.2rem; }
  .cat-grid { grid-template-columns: 1fr; gap: 40px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-features { grid-template-columns: 1fr; gap: 36px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-block:nth-child(even) { border-right: none; }
  .split { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
