:root {
  --bg: #f5f1ea;
  --surface: rgba(255, 255, 255, 0.78);
  --card: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: rgba(0, 0, 0, 0.1);
  --dark: #111111;
  --accent: #9c006f;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(245, 241, 234, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  font-size: 0.96rem;
  color: #3f3f3f;
}

.nav a:hover,
.footer-links a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
}

.mobile-nav {
  display: none;
  padding: 0 0 20px;
}

.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #383838;
}

/* ── Buttons ── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.button.primary:hover { background: #222; }

/* ── Typography ── */

.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 700;
  color: #737373;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.56);
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
  max-width: 820px;
}

h2 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.section-head { max-width: 760px; }

.section-copy {
  margin: 20px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* ── Hero ── */

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  padding: 92px 0 110px;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 700px;
  font-size: 1.14rem;
  line-height: 1.8;
  color: #4b4b4b;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ── Info cards ── */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.product-card,
.repair-card,
.form-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.info-card {
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-card p {
  margin: 30px 0 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 1.1rem;
}

/* ── Hire / Products ── */

section.content-section {
  padding: 98px 0;
}

.products-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  background: var(--card);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-visual {
  aspect-ratio: 4 / 3;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ece8e0, #ffffff 54%, #e6e1d7);
}

.product-visual.placeholder {
  display: grid;
  place-items: center;
}

.placeholder-label {
  padding: 12px 18px;
  border: 1px dashed #999;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #666;
}

.product-body { padding: 28px; }

.product-type {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.27em;
  color: #7b7b7b;
  font-weight: 700;
}

.product-card h3 {
  margin: 14px 0 0;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.product-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Repairs ── */

.repairs-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.repairs-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  padding: 98px 0;
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.repair-card {
  background: var(--bg);
  padding: 24px;
}

.repair-card h3 {
  margin: 18px 0 0;
  font-size: 1.3rem;
}

.repair-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Dark band ── */

.dark-band {
  padding: 0 0 98px;
}

.dark-panel {
  border-radius: 40px;
  background: #111;
  color: white;
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 26px;
}

.dark-panel h2 { margin-top: 12px; }

.dark-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dark-points div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Contact ── */

.contact-wrap {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 26px;
  padding: 98px 0;
}

.contact-meta {
  margin-top: 34px;
  display: grid;
  gap: 22px;
  color: #404040;
}

.meta-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.reveal-phone-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px 14px;
  font-size: 0.85rem;
  color: #111;
  cursor: pointer;
  transition: background 0.15s;
}

.reveal-phone-btn:hover {
  background: var(--surface);
}

.meta-icon {
  width: 24px;
  font-size: 1rem;
  flex: 0 0 24px;
  text-align: center;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.form-card {
  background: var(--bg);
  padding: 28px;
}

.form-card h3 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.field-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.field-list input,
.field-list select,
.field-list textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
}

.field-list select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.field-list textarea {
  min-height: 150px;
  resize: vertical;
}

.map-card {
  overflow: hidden;
  min-height: 560px;
  background: #ddd;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #666;
  font-size: 0.96rem;
}

.footer-links {
  display: flex;
  gap: 22px;
}

/* ── Basket nav icon ── */

.basket-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.basket-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--dark);
  color: white;
  border-radius: 999px;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Inner page hero ── */

.page-hero {
  border-bottom: 1px solid var(--line);
  padding: 72px 0 80px;
}

.page-hero h1 {
  max-width: 680px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.back-link:hover { color: var(--text); }

/* ── Product detail ── */

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 52px;
  padding: 72px 0 98px;
  align-items: start;
}

.product-detail-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ece8e0, #ffffff 54%, #e6e1d7);
  padding: 40px;
  aspect-ratio: 4 / 3;
}

.product-detail-body .eyebrow { margin-bottom: 12px; }

.product-detail-body h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.product-detail-body > p {
  color: #4b4b4b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 28px;
}

.spec-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: #3f3f3f;
  line-height: 1.5;
}

.spec-list li::before {
  content: "✓";
  color: var(--dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.price-tag .amount {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-tag .per {
  font-size: 0.9rem;
  color: var(--muted);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
}

.qty-control button {
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text);
}

.qty-control button:hover { background: rgba(0,0,0,0.05); }

.qty-control .qty-value {
  min-width: 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Toast notification ── */

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--dark);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hire catalogue ── */

.hire-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ── Basket page ── */

.basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  gap: 32px;
  padding: 72px 0 98px;
  align-items: start;
}

.basket-section-title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.basket-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.basket-item-row:first-of-type { border-top: 1px solid var(--line); }

.basket-item-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.basket-item-name:hover {
  color: var(--accent);
}

.basket-item-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 2px;
}

.basket-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.basket-item-qty button {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text);
}

.basket-item-qty button:hover { background: rgba(0,0,0,0.05); }

.basket-item-qty .qty-num {
  min-width: 30px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basket-item-remove {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.basket-item-remove:hover { border-color: #c00; color: #c00; }

.empty-basket {
  padding: 64px 0;
  text-align: center;
  color: var(--muted);
}

.empty-basket p { margin: 12px 0 28px; }

.summary-card,
.hire-period-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 28px;
  margin-bottom: 16px;
}

.summary-card h3,
.hire-period-card h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hire-period-card .date-fields {
  display: grid;
  gap: 10px;
}

.hire-period-card label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.hire-period-card input[type="date"] {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  color: var(--text);
}

.days-display {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

.days-display strong { color: var(--text); }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #4b4b4b;
  border-bottom: 1px solid var(--line);
}

.summary-row:last-of-type { border-bottom: none; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.checkout-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 28px;
  margin-top: 32px;
}

.checkout-card h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.checkout-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Responsive additions ── */

@media (max-width: 860px) {
  .product-detail-grid,
  .basket-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-visual { aspect-ratio: 3 / 2; }
  .page-hero { padding: 52px 0 60px; }
}
/* ── Animations ── */

.animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */

@media (max-width: 1100px) {
  .hero-grid,
  .repairs-grid,
  .contact-grid,
  .dark-panel,
  .contact-panel,
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid .product-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .nav,
  .header-cta { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }

  .hero-grid,
  .repairs-grid,
  .contact-grid,
  .dark-panel,
  .contact-panel,
  .products-grid,
  .repair-grid,
  .dark-points,
  .info-grid,
  .footer-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .products-grid .product-card:last-child { grid-column: auto; }
  .hero-grid { padding: 72px 0 86px; }
  section.content-section,
  .repairs-grid,
  .contact-grid { padding: 76px 0; }
  .dark-band { padding-bottom: 76px; }
  .dark-panel { padding: 28px; border-radius: 28px; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
}
