/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --green:       #064b20;
  --green-hover: #053d1a;
  --text:        #272727;
  --text-light:  #555;
  --white:       #ffffff;
  --gray-bg:     #f6f6f6;
  --nav-h:       90px;

  --font-sans:   'Raleway', 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif:  'EB Garamond', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ============================================================
   NAVIGATION
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-right { justify-content: flex-end; }

.nav-left a,
.nav-right a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--text);
  transition: color .2s ease;
}

.nav-left a:hover,
.nav-right a:hover { color: var(--green); }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  min-width: 160px;
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.dropdown-menu li a:hover { background: var(--gray-bg); }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 20px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open { display: flex; }

.mobile-nav ul { text-align: center; }

.mobile-nav li { margin-bottom: 20px; }

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text);
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  margin-top: var(--nav-h);
}

.hero-text {
  padding: 0 6% 0 5%;
  max-width: 660px;
  color: var(--white);
}

.hero-line-1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}

.hero-line-2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow { max-width: 860px; }

/* ============================================================
   WHY US SECTION
============================================================ */
.why-us {
  padding: 80px 0 64px;
  text-align: center;
  background: var(--white);
}

.script-heading {
  font-family: var(--font-script);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 28px;
  line-height: 1.2;
}

.script-heading--white { color: var(--white); }

.why-us-body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.85;
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   GALLERY / CAROUSEL
============================================================ */
.gallery-section {
  background: var(--white);
  padding-bottom: 0;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .6s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Prev / Next arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(34,34,34,.55);
  color: var(--white);
  border: none;
  font-size: 40px;
  line-height: 1;
  width: 48px;
  height: 72px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  padding: 0;
}

.carousel-btn:hover { background: rgba(34,34,34,.8); }

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  background: var(--white);
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease;
}

.carousel-dot.active { background: var(--green); }

/* ============================================================
   PORTFOLIO CTA
============================================================ */
.portfolio-cta {
  padding: 60px 20px;
  text-align: center;
  background: var(--white);
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

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

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

.btn-submit {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 30px;
  padding: 14px 44px;
}

.btn-submit:hover { background: rgba(255,255,255,.25); }

/* ============================================================
   ALBUM COVER SECTION
============================================================ */
.album-cover {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 0;
}

.album-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}

.album-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.album-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: .9;
  transition: opacity .2s;
}

.album-play-btn:hover { opacity: 1; }

.album-cover-overlay {
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.album-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 10px;
  filter: brightness(0) invert(1);
}

.album-subtitle {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* ============================================================
   TESTIMONIAL
============================================================ */
.testimonial {
  padding: 64px 20px;
  background: var(--white);
}

.divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 48px;
}

blockquote {
  text-align: center;
  margin-bottom: 48px;
}

blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
}

blockquote footer {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--text-light);
}

/* ============================================================
   FEATURED ON
============================================================ */
.featured-on {
  background: var(--gray-bg);
  padding: 64px 20px 72px;
  text-align: center;
}

.featured-on-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--text);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.badge {
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-section {
  background: var(--green);
  padding: 72px 20px 80px;
}

.contact-section .script-heading { margin-bottom: 24px; }

.unavailable-msg {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .08em;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
}

.contact-form { max-width: 1000px; margin: 0 auto; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: .04em;
}

.form-group .req {
  font-weight: 300;
  opacity: .8;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding: 10px 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s ease;
}

.form-group input::placeholder { color: rgba(255,255,255,.5); }

.form-group input:focus { border-bottom-color: var(--white); }

.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #1b1b1b;
  padding: 24px 20px;
  text-align: center;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .2s ease;
}

.footer-nav a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 900px) {
  .nav-left,
  .nav-right { gap: 20px; }

  .nav-left a,
  .nav-right a { font-size: 12px; }

  .badges-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  /* Hide desktop nav links, show hamburger */
  .nav-left,
  .nav-right { display: none; }

  .hamburger { display: flex; }

  .nav-logo img { height: 48px; }

  .hero { background-position: 70% 30%; }

  .hero-text { padding: 0 5%; }

  .why-us { padding: 56px 0 48px; }

  .carousel-slide { aspect-ratio: 4 / 3; }

  .album-cover { max-width: 100%; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
  }

  .portfolio-cta { padding: 48px 20px; }

  .testimonial { padding: 48px 20px; }

  .featured-on { padding: 48px 20px 56px; }

  .contact-section { padding: 56px 20px 64px; }
}

@media (max-width: 480px) {
  .carousel-btn { width: 36px; height: 56px; font-size: 28px; }

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