@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --coral: #ff4347;
  --ink: #101820;
  --charcoal: #323232;
  --cream: #f3f2ee;
  --paper: #fffdfa;
  --line: rgba(16, 24, 32, 0.14);
  --muted: #6e7378;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.18);
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--coral);
  color: white;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 250, 0.92);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-link img {
  height: 46px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: none;
  gap: 28px;
  color: var(--charcoal);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  background: var(--coral);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.language-toggle {
  background: var(--ink);
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  min-width: 48px;
  padding: 10px 12px;
}

.section {
  padding: 78px 0;
}

.section-muted {
  background: var(--cream);
}

.section-dark {
  background: var(--ink);
  color: white;
}

.hero {
  isolation: isolate;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  padding: 84px 0 40px;
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.96) 0%, rgba(16, 24, 32, 0.78) 42%, rgba(16, 24, 32, 0.28) 100%),
    url("assets/images/hero-showroom.jpg") center right / cover no-repeat;
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero-media::after {
  background: linear-gradient(180deg, transparent 68%, var(--ink) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-grid {
  display: grid;
  gap: 34px;
  min-height: 72vh;
  place-content: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.03;
  margin-bottom: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-lede,
.section-lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral);
  color: white;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-panel {
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 1px;
  max-width: 760px;
}

.hero-panel span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 18px;
  text-transform: uppercase;
}

.split {
  display: grid;
  gap: 32px;
}

.copy-stack {
  color: var(--charcoal);
  font-size: 1.05rem;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 780px;
}

.section-heading.compact {
  max-width: 680px;
}

.brand-grid {
  display: grid;
  gap: 18px;
}

.brand-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(16, 24, 32, 0.08);
  min-height: 330px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.brand-card::before {
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.pineapple-card::before {
  background: #ffb400;
}

.carlotti-card::before {
  background: #111111;
}

.squalo-card::before {
  background: #101820;
}

.brand-card img {
  height: 78px;
  margin-bottom: 54px;
  object-fit: contain;
  object-position: left center;
  width: 220px;
}

.brand-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.category-grid span {
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 800;
  min-height: 62px;
  padding: 18px;
}

.why .split {
  align-items: start;
}

.why .section-lede {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 22px;
}

.reason-list {
  display: grid;
  gap: 10px;
}

.reason-list div {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--coral);
  font-weight: 800;
  padding: 17px 18px;
}

.contact-grid {
  display: grid;
  gap: 32px;
}

.contact-section .section-lede {
  color: var(--muted);
  margin-top: 18px;
}

.contact-details {
  display: grid;
  gap: 10px;
  font-weight: 800;
  margin-top: 28px;
}

.contact-details a {
  color: var(--ink);
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.field-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
textarea {
  background: white;
  border: 1px solid rgba(16, 24, 32, 0.2);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 67, 71, 0.42);
  outline-offset: 3px;
}

.honeypot {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.form-status {
  display: none;
  font-weight: 800;
  padding: 12px 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(21, 125, 76, 0.12);
  color: #157d4c;
}

.form-status.error {
  background: rgba(255, 67, 71, 0.12);
  color: #a32024;
}

.form-submit {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

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

.footer-grid {
  align-items: center;
  display: grid;
  gap: 12px;
}

.footer-grid p {
  color: var(--muted);
  margin: 0;
}

.whatsapp-float {
  align-items: center;
  background: #1fbe5f;
  bottom: 20px;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.24);
  color: white;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 20px;
  width: 58px;
  z-index: 120;
}

@media (min-width: 700px) {
  .nav-links {
    display: flex;
  }

  .hero-panel,
  .category-grid,
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-card {
    min-height: 360px;
  }
}

@media (min-width: 940px) {
  .section {
    padding: 108px 0;
  }

  .split,
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-grid span:nth-child(7) {
    grid-column: span 2;
  }
}

@media (max-width: 699px) {
  .site-header {
    min-height: 68px;
  }

  .brand-link img {
    height: 40px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(16, 24, 32, 0.94) 0%, rgba(16, 24, 32, 0.78) 56%, rgba(16, 24, 32, 0.95) 100%),
      url("assets/images/hero-showroom.jpg") center / cover no-repeat;
  }

  .btn {
    width: 100%;
  }
}
