:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #020202;
  --muted: #4f4f4f;
  --accent: #a5bac1;
  --accent-dark: #7f97a0;
  --highlight: #f5d36f;
  --border: rgba(2, 2, 2, 0.12);
  --shadow: 0 18px 45px rgba(2, 2, 2, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Avenir Next', 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
.eyebrow,
.hero-overlay-panel span {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.brand img {
  display: block;
  width: auto;
  max-height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 1.6rem;
  color: var(--text);
  font-weight: 400;
}

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

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
  transition: background 180ms ease, transform 180ms ease;
}

.icon-btn:hover {
  background: rgba(165, 186, 193, 0.24);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-small {
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(2, 2, 2, 0.2);
}

.btn-secondary:hover {
  background: rgba(165, 186, 193, 0.16);
  color: var(--accent-dark);
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.78) 0%, rgba(2, 2, 2, 0.45) 45%, rgba(2, 2, 2, 0.25) 100%);
}

.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero-overlay-panel {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-overlay-panel span {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-scroll-tip {
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  margin-top: 0.2rem;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.content-page h1 {
  color: #a5bac1;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.1rem;
  margin-bottom: 0.75rem;
}

.content-page h2 {
  color: #f5d36f;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

.content-page p,
.content-page h1,
.content-page h2 {
  font-weight: 400;
}

.terms-text p {
  margin: 0 0 0.85rem;
  line-height: 1.55;
}

.terms-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.measure-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 1fr);
  gap: 2.2rem;
  align-items: center;
  margin-top: 0.5rem;
}

.measure-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.measure-content h1 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.measure-image img {
  border: 1px solid var(--border);
  background: var(--surface);
  max-width: 100%;
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
}

.measure-tables {
  margin-left: 0.5rem;
  margin-top: 0.25rem;
}

.measure-tables h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.measure-tables h2:last-of-type {
  margin-top: 1.2rem;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.size-table th,
.size-table td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.6rem;
  text-align: center;
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.terms-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.terms-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.terms-column p,
.terms-column li {
  text-align: justify;
}

.section-block {
  margin-top: 1.2rem;
}

@media (max-width: 900px) {
  .terms-text {
    grid-template-columns: 1fr;
  }
}

.hero-text,
.section-heading p,
.card-body p,
.about-grid p,
.contact-card p {
  color: var(--muted);
  font-size: 1.02rem;
  text-align: justify;
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.hero-highlights li {
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: white;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
}

.hero-visual {
  position: relative;
  min-height: 440px;
}

.section {
  padding: 5rem 0;
}

.measure-section {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(165, 186, 193, 0.12) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  height: 260px;
}

.card-body {
  padding: 1.25rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-visual img {
  border-radius: 1.5rem;
  min-height: 380px;
  box-shadow: var(--shadow);
}

/* Tighter spacing for About Us page */
.about-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.about-section .eyebrow {
  margin-bottom: 0.45rem;
}
.about-section h2 {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

/* Use Montserrat for the eyebrow label on About page */
.about-section .eyebrow {
  font-family: 'Montserrat', 'Avenir Next', 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
}

/* Make the About page main heading larger so it spans two lines */
.about-section h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stats div {
  background: rgba(245, 211, 111, 0.2);
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  min-width: 130px;
}

.stats strong {
  display: block;
  color: var(--accent-dark);
  font-size: 1.15rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  height: 280px;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr min(560px, 48%);
  gap: 1rem;
  align-items: center;
  margin-top: 0.2rem;
}
.contact-details h2 {
  margin: 0 0 0.25rem 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-self: center; /* center the whole block vertically in the grid cell */
}
.contact-details p {
  margin: 0 0 0.35rem 0;
}
/* Slightly reduce h1 size inside contact-details for balance */
.contact-details h1 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin: 0 0 0.25rem 0;
}
.contact-details .muted {
  margin-bottom: 0.6rem;
}
.contact-section {
  padding-top: 0.6rem;
  padding-bottom: 2rem;
}

/* Make the embedded map square and aligned with the contact text */
.contact-map {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact-map iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  margin-top: 0;
}

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

/* Search drawer */
.search-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--surface);
  box-shadow: -20px 0 40px rgba(2,2,2,0.08);
  transition: right 260ms ease;
  z-index: 60;
  padding: 2rem;
  overflow: auto;
}
.search-drawer.open {
  right: 0;
}
.search-drawer .close-btn {
  display: inline-flex;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}
.search-drawer h2 {
  margin: 0 0 0.75rem 0;
}
.search-input {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.search-input input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.55rem;
}
.search-results {
  display: grid;
  gap: 0.5rem;
}
.search-result-item {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
}

@media (max-width: 700px) {
  .search-drawer {
    width: 100%;
    right: -100%;
  }
  .search-drawer.open { right: 0; }
}

/* Contact form was removed; related styles deleted */

.contact-section {
  padding-top: 0.6rem;
}

.contact-card {
  background: linear-gradient(135deg, #020202 0%, #a5bac1 100%);
  color: white;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 1.6rem;
}

.site-footer {
  padding: 1.25rem 0 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 700px) {
  .nav-bar,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .contact-card {
    padding: 2rem 1.2rem;
  }

  .hero-visual img,
  .about-visual img {
    min-height: 300px;
  }
}
