/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #3d7878;
  --teal-dark: #2a5c5c;
  --cream: #f5f1eb;
  --cream-dark: #ede8df;
  --dark: #1c1c1c;
  --text: #555;
  --text-light: #777;
  --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 115%;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-weight: 500;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px;
  background: rgba(217, 215, 212, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(61, 120, 120, 0.15);
}

/* Left: full logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-icon {
  height: 45px;
}



/* Center: brand text */
.nav-brand {
  text-align: center;
  line-height: 1.15;
}

.nav-brand .name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight:bolder;
  color: var(--dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.nav-brand .tagline {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  justify-self: end;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  overflow: hidden;
}

.nav-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23c8bfb0' stroke-width='1'%3E%3Cellipse cx='400' cy='400' rx='50' ry='30'/%3E%3Cellipse cx='400' cy='400' rx='100' ry='65'/%3E%3Cellipse cx='400' cy='400' rx='150' ry='100'/%3E%3Cellipse cx='400' cy='400' rx='200' ry='135'/%3E%3Cellipse cx='400' cy='400' rx='260' ry='180'/%3E%3Cellipse cx='400' cy='400' rx='320' ry='230'/%3E%3Cellipse cx='400' cy='400' rx='390' ry='285'/%3E%3Cellipse cx='400' cy='400' rx='460' ry='345'/%3E%3Cellipse cx='400' cy='400' rx='540' ry='410'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.5;
  pointer-events: none;
}

.nav-overlay.open {
  transform: translateX(0);
}

.overlay-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}

.overlay-logo {
  position: absolute;
  top: 16px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.overlay-logo svg {
  width: 32px;
  height: 32px;
}

.overlay-nav {
  position: relative;
  z-index: 1;
}

.overlay-nav li {
  margin: 8px 0;
}

.overlay-nav a {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
}

.overlay-nav a:hover {
  color: var(--teal);
}

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.overlay-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO (HOME) ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.hero-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Scale up 20% to push YouTube controls & title off-screen */
  width: 120vw;
  height: 67.5vw;
  min-height: 120vh;
  min-width: 213.3vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 0 20px;
  max-width: 680px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 32px;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

/* ===== BUILT ON TRUST ===== */
.trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.trust-image {
  height: 650px;
  overflow: hidden;
}

.trust-image img {
  width: 100%;
  height: 100%;
}

.trust-text {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 60px 50px;
}

.trust-text-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--teal);
  margin-bottom: 18px;
  font-style: italic;
}

.trust-text-inner p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 360px;
}

.link-arrow {
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 14px;
}

/* ===== WHAT WE BUY ===== */
.what-we-buy {
  background: var(--cream);
  padding: 80px 40px;
  text-align: center;
}

.what-we-buy h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--teal);
  font-style: italic;
  margin-bottom: 12px;
}

.what-we-buy>p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 50px;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  text-align: left;
}

.product-card-img {
  height: 220px;
  overflow: hidden;
  margin-bottom: 14px;
}

.product-card-img img {
  transition: transform 0.4s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-card h3 {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--cream-dark);
  padding: 80px 40px;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--teal);
  font-style: italic;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  align-items: stretch;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1.5px solid #999;
}

.cta-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--dark);
  padding: 10px 0;
  outline: none;
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta-form button {
  border: none;
  background: var(--teal);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-form button:hover {
  background: var(--teal-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 60px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  font-weight: 400;
}

.footer-nav a:hover {
  color: #aaa;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  align-items: center;
  margin-top: 10px;
}

.footer-logo {
  grid-column: 2;
  text-align: center;
}

.footer-logo .name {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.footer-logo .tagline {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #79a6a3;
  text-transform: uppercase;
  margin-top: 6px;
}

.footer-email {
  grid-column: 3;
  justify-self: end;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 200;
  color: var(--white);
}
.footer-email{
  display: flex;
  align-items: center;   /* Perfect vertical alignment */
  gap: 8px;
  line-height: 1;
}

.footer-email svg{
  width: 20px;
  height: 20px;
  display: block;        /* Removes extra bottom space */
  flex-shrink: 0;
}

.footer-email span{
  display: flex;
  align-items: center;
}
/* ===== ABOUT PAGE HERO ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 400px;
  padding: 72px 50px 40px;
  gap: 40px;
}

.about-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-text {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.about-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--teal);
  font-style: italic;
  margin-bottom: 24px;
}

.about-hero-text p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 14px;
}

/* ===== VISION & MISSION ===== */
.vm-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  padding: 60px 50px;
  gap: 40px;
}

.vm-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-around;
  padding: 20px 0;
}

.vm-block h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #558d92;
  /* Teal color matching mockup */
  font-style: normal;
  font-weight: 600;
  margin-bottom: 24px;
}

.vm-block p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  font-weight: 500;
}

.vm-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-right-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  border: 4px solid #77726e;
  box-shadow: none;
}

.vm-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 57px);
  padding-top: 57px;
  background: var(--cream);
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.contact-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-wrap {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.contact-form-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--teal);
  font-style: italic;
  margin-bottom: 14px;
}

.contact-form-wrap>p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  border: none;
  border-bottom: 1px solid #bbb;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.83rem;
  color: var(--dark);
  padding: 8px 0;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}


.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #bbb;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 500;
}

.file-upload-label span {
  font-style: italic;
  color: #aaa;
  font-weight: 400;
}

.file-input-wrap {
  position: relative;
  border-bottom: 1px solid #bbb;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-input-wrap input[type="file"] {
  opacity: 0;
  position: absolute;
  inset: 0;
  cursor: pointer;
  width: 100%;
}

.file-placeholder {
  font-size: 0.8rem;
  color: #bbb;
}

.file-icon {
  font-size: 1rem;
  color: var(--text-light);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.form-checkbox input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--teal);
}

.btn-submit {
  align-self: flex-end;
  background: var(--teal);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 28px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--teal-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 90vh;
    padding: 120px 0 80px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .nav-logo-icon{
    height: 35px;
  }

  .hero-content p {
    margin-left: 0;
    margin-right: 0;
    font-size: 1rem;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .trust-image {
    height: 280px;
  }

  .trust-text {
    padding: 40px 28px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding: 90px 24px 40px;
    gap: 20px;
  }

  .about-hero-img {
    min-height: auto;
    width: 100%;
    aspect-ratio: 16/9;
  }

  .about-hero-text {
    padding: 10px 0;
  }

  .vm-section {
    grid-template-columns: 1fr;
  }

  .vm-right {
    flex-direction: row;
  }

  .vm-right-img {
    flex: 1;
  }

  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero-img {
    min-height: 260px;
  }

  .contact-form-wrap {
    padding: 36px 28px;
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-inner {
    text-align: center;
    gap: 24px;
  }

  .footer-nav {
    gap: 12px 20px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-logo {
    grid-column: 1;
  }

  .footer-email {
    grid-column: 1;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .vm-right {
    flex-direction: column;
  }

  .nav-brand .name {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  .nav-brand .tagline{
    font-size: 0.4rem;
  }
}