*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ocean: #1a6b8a;
  --ocean-light: #e8f4f8;
  --ocean-mid: #5ba8c4;
  --sand: #f5f0e8;
  --dark: #1c2b35;
  --text: #3d5061;
  --gold: #c9a96e;
  --white: #ffffff;
  --radius: 12px;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid #e5edf0;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.logo span {
  color: var(--gold);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
nav ul a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-family: "Arial", sans-serif;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--ocean);
}

/* ── INTRO BANNER ── */
.intro-banner {
  background: linear-gradient(135deg, var(--ocean) 0%, #0d4a62 100%);
  color: var(--white);
  padding: 80px 40px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}
.intro-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.intro-content {
  max-width: 500px;
}
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #b8dfed;
  font-family: "Arial", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.intro-badge i {
  font-size: 0.9rem;
}
.intro-banner h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--white);
}
.intro-banner h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #b8dce8;
  margin-bottom: 36px;
  line-height: 1.6;
  font-family: "Arial", sans-serif;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: "Arial", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 38px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}
.btn-primary:hover {
  background: #d4b47a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.45);
}
.intro-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/9;
}
.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── VALUES ── */
.values {
  background: var(--sand);
  padding: 70px 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h3 {
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text);
  max-width: 500px;
  margin: 0 auto;
  font-family: "Arial", sans-serif;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: var(--ocean-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--ocean);
  font-size: 1.5rem;
}
.value-card h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.92rem;
  color: var(--text);
  font-family: "Arial", sans-serif;
  line-height: 1.65;
}

/* ── PRODUCTS ── */
.products {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  background: var(--white);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.product-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img img {
  transform: scale(1.04);
}
.product-info {
  padding: 24px;
}
.product-info h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-info p {
  font-size: 0.88rem;
  color: var(--text);
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ocean);
}
.price span {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.btn-add {
  background: var(--ocean);
  color: var(--white);
  font-family: "Arial", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-add:hover {
  background: #1a5c76;
}

/* ── SHIPPING STRIP ── */
.shipping-strip {
  background: var(--ocean);
  color: var(--white);
  padding: 38px 40px;
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.ship-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ship-icon {
  color: #9dd0e3;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.ship-text h5 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Arial", sans-serif;
}
.ship-text p {
  font-size: 0.8rem;
  color: #9dd0e3;
  font-family: "Arial", sans-serif;
}

/* ── ABOUT ── */
.about {
  background: var(--sand);
  padding: 80px 40px;
}
.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-inner h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 30px;
}
.about-inner p {
  font-size: 1rem;
  color: var(--text);
  font-family: "Arial", sans-serif;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ── CONTACT ── */
.contact {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.contact h3 {
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 40px;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h4 {
  font-size: 1.05rem;
  color: var(--ocean);
  margin-bottom: 18px;
  font-family: "Arial", sans-serif;
}
.contact-info p {
  font-size: 0.92rem;
  color: var(--text);
  font-family: "Arial", sans-serif;
  line-height: 1.7;
  margin-bottom: 8px;
}
.contact-info a {
  color: var(--ocean);
  text-decoration: none;
}
.hours-box {
  background: var(--ocean-light);
  border-radius: var(--radius);
  padding: 28px;
}
.hours-box h4 {
  font-size: 1.05rem;
  color: var(--ocean);
  margin-bottom: 16px;
  font-family: "Arial", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: "Arial", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid #d4e8f0;
}
.hours-row:last-child {
  border-bottom: none;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #8ba5b3;
  padding: 40px;
  text-align: center;
  font-family: "Arial", sans-serif;
  font-size: 0.85rem;
  line-height: 1.8;
}
footer strong {
  color: var(--white);
}
.footer-links {
  margin-top: 10px;
}
.footer-links button {
  background: none;
  border: none;
  color: #8ba5b3;
  font-family: "Arial", sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links button:hover {
  color: var(--white);
}
.footer-links .sep {
  color: #3d5a6a;
  margin: 0 6px;
}
.footer-copy {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #5a7a8a;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-head {
  padding: 24px 28px 18px;
  border-bottom: 1px solid #e5edf0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: 16px 16px 0 0;
}
.modal-head h2 {
  font-size: 1.2rem;
  color: var(--dark);
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--dark);
}
.modal-body {
  padding: 24px 28px 32px;
  font-family: "Arial", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
}
.modal-body h3 {
  font-size: 1rem;
  color: var(--dark);
  margin: 20px 0 8px;
  font-family: "Georgia", serif;
}
.modal-body p {
  margin-bottom: 10px;
}
.modal-body ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.modal-body ul li {
  margin-bottom: 5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .intro-banner {
    grid-template-columns: 1fr;
    padding: 50px 24px;
    min-height: auto;
  }
  .intro-img {
    display: none;
  }
  .intro-banner h1 {
    font-size: 2rem;
  }
  .values-grid,
  .products-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 16px 24px;
  }
  nav ul {
    display: none;
  }
  .shipping-strip {
    gap: 28px;
    padding: 28px 24px;
  }
  .products {
    padding: 60px 24px;
  }
  .about {
    padding: 60px 24px;
  }
  .contact {
    padding: 60px 24px;
  }
}
