/* Reset / Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: rgba(31, 41, 55, 0.72);

  --header: #0f3d3e;
  --header2: #155e63;

  --accent: #ff6b6b;
  --accent2: #f25555;

  --line: rgba(0, 0, 0, 0.10);
  --tealSoft: rgba(21, 94, 99, 0.12);
  --accentSoft: rgba(255, 107, 107, 0.14);

  --shadow1: 0 10px 24px rgba(0, 0, 0, 0.10);
  --shadow2: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow3: 0 16px 36px rgba(0, 0, 0, 0.14);
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 18px 0;
}

.section {
  padding: 38px 0;
}

.muted {
  opacity: 1;
  color: var(--muted);
}

.accent {
  color: var(--accent);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--header), var(--header2));
  color: #fff;
  box-shadow: var(--shadow1);
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.header-center-btn {
  justify-self: center;
  white-space: nowrap;
  font-size: 15px;
  padding: 11px 18px;
}

.nav {
  grid-column: 3;
  justify-self: end;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  max-width: 760px;
}

.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-title {
  font-weight: 900;
  letter-spacing: 0.3px;
}

.brand-subtitle {
  font-weight: 700;
  opacity: 0.92;
  font-size: 13px;
  line-height: 1.25;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--accent);
}

.nav-cta:hover {
  background: var(--accent2);
}

/* ===== HERO ===== */
.hero {
  padding-top: 26px;
  padding-bottom: 10px;
}

.hero-card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(21, 94, 99, 0.14);
  box-shadow: var(--shadow1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.hero-copy h1 {
  margin: 10px 0 12px;
  font-size: 30px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hero-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow2);
}

.salamander-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.salamander-logo {
  height: 46px;
  width: auto;
  border-radius: 10px;
  padding: 6px;
  background: rgba(21, 94, 99, 0.10);
  border: 1px solid rgba(21, 94, 99, 0.16);
}

.mini-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tealSoft), var(--accentSoft));
  border: 1px solid rgba(21, 94, 99, 0.14);
  font-weight: 800;
  font-size: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow3);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent2);
}

.btn-outline {
  border: 2px solid rgba(15, 61, 62, 0.22);
  background: #fff;
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(21, 94, 99, 0.08);
}

/* ===== Section Head ===== */
.section-head {
  text-align: center;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

/* ===== Info card ===== */
.info-card {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(21, 94, 99, 0.14);
  box-shadow: var(--shadow2);
}

/* ===== Two photos ===== */
.two-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.photo-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(21, 94, 99, 0.14);
  box-shadow: var(--shadow2);
}

.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-caption {
  padding: 12px 14px;
  font-weight: 800;
  opacity: 0.9;
}

/* ===== Specs / Cards ===== */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.spec-card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(21, 94, 99, 0.14);
  box-shadow: var(--shadow2);
}

.spec-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.spec-card ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.spec-card li {
  font-weight: 700;
  opacity: 0.95;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(21, 94, 99, 0.08), rgba(255, 107, 107, 0.10));
}

.highlight-card p {
  margin: 10px 0 14px;
}

/* ===== 3 tiles ===== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.info-tile {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(21, 94, 99, 0.14);
  box-shadow: var(--shadow2);
}

.info-tile h3 {
  margin-bottom: 8px;
}

.info-tile ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.info-tile li {
  font-weight: 700;
  opacity: 0.95;
}

/* ===== Bottom note ===== */
.bottom-note {
  margin-top: 18px;
  background: linear-gradient(90deg, var(--tealSoft), var(--accentSoft));
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid rgba(21, 94, 99, 0.16);
}

.note-text {
  margin: 0;
  font-weight: 900;
  opacity: 0.92;
}

/* ===== Contact form ===== */
.subtext {
  margin: 0 auto 16px;
  line-height: 1.6;
  font-weight: 800;
  opacity: 0.9;
  max-width: 900px;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-form label {
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 61, 62, 0.22);
  outline: none;
  font-weight: 600;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(21, 94, 99, 0.85);
  box-shadow: 0 0 0 3px rgba(21, 94, 99, 0.18);
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 40px;
  background: linear-gradient(90deg, #0f3d3e, #0b2f30);
  color: #fff;
  padding: 22px 0;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1.15;
}

.footer-inner p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-icons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
  font-size: 20px;
}

.copyright {
  margin-top: 10px;
  opacity: 0.85;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .two-photos {
    grid-template-columns: 1fr;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-copy h1 {
    font-size: 26px;
  }
}

@media (max-width: 820px) {
  .header-center-btn {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    position: relative;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 6px;
  }

  .nav-link {
    padding: 9px 10px;
    font-size: 14px;
  }
}

.premium-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.premium-images img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.nav-desktop {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


.nav-mobile-actions {
  display: none; 
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.nav-cta-mobile {
  padding: 10px 12px;
  font-size: 14px;
}

.nav-mobile {
  display: none;
  position: absolute;
  right: 5%;
  top: 74px; 
  width: min(92vw, 320px);
  background: rgba(15, 61, 62, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow3);
  padding: 10px;
}

.nav-mobile .nav-link {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
}

.nav-mobile .nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-mobile.is-open {
  display: block;
}

@media (max-width: 820px) {
  .nav {
    position: relative;
  }

  .nav-desktop {
    display: none;
  }

  .nav-mobile-actions {
    display: inline-flex;
  }
}
