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

:root {
  --off-white: #faf8f4;
  --near-black: #1a1a1a;
  --gold: #c9a84c;
  --purple: #4a1a6b;
  --red: #8b0000;
  --green: #2d5a3d;
  --accent-gradient: linear-gradient(to bottom, var(--gold), var(--red), var(--purple));
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--off-white); color: var(--near-black); font-family: var(--font-sans); line-height: 1.6; }
img { width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
.nav {
  background: var(--near-black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.nav-logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.nav-links {
  display: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-links a:hover { color: rgba(255,255,255,0.9); }
.nav-links a.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* Hamburger button */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.25s ease;
}

/* Full-screen drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--near-black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 48px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: rgba(255,255,255,0.7);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer a:hover { color: var(--gold); padding-left: 8px; }
.nav-drawer a.active { color: var(--gold); }
.nav-drawer-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.nav-drawer-close:hover { color: var(--gold); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 39%;
  opacity: 0.82;
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #111e18 0%, #1a3a2a 40%, #2d5a3d 70%, #1e3328 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 30%, rgba(0,0,0,0.1) 55%, transparent 75%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 25%),
    radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 9vw, 6rem);
  color: #fff;
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.3;
}
.hero-logo {
  display: block;
  width: clamp(260px, 50vw, 520px);
  height: auto;
  margin-bottom: 36px;
}
.about-logo {
  display: block;
  width: clamp(200px, 40vw, 360px);
  height: auto;
  margin-bottom: 28px;
}
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--near-black);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 32px;
  min-height: 44px;
  transition: background 0.2s;
}
.hero-cta:hover { background: #dbb84e; }

/* ─── PAGE HEADER ─── */
.page-header {
  position: relative;
  padding: 56px 28px 44px 52px;
  background: var(--off-white);
  border-bottom: 1px solid #e6ddd0;
}
.page-header::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}
.page-header-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--near-black);
}
.page-header-sub {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #777;
  max-width: 520px;
  line-height: 1.6;
}

/* ─── SECTION ─── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 28px;
}
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--near-black);
  margin-bottom: 18px;
  line-height: 1.15;
}
.section-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.section-body {
  font-size: 1rem;
  color: #505050;
  line-height: 1.85;
  max-width: 680px;
}
.section-body p + p { margin-top: 18px; }

/* ─── PHOTO GRID ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 48px;
}
.photo-item {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #1a3a2a 0%, #2d5a3d 50%, #1a2e22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-item img { object-fit: cover; width: 100%; height: 100%; display: block; }
.photo-item-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.photo-item-placeholder span {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.photo-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

/* ─── CTA CARDS ─── */
.cta-strip {
  background: var(--near-black);
  margin-top: 80px;
}
.cta-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cta-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  cursor: pointer;
}
.cta-card:hover { background: rgba(255,255,255,0.04); }
.cta-card-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.cta-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
}
.cta-card-arrow {
  margin-top: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-card-arrow::after { content: '→'; font-size: 0.9em; }
.cta-card:nth-child(1) .cta-card-label,
.cta-card:nth-child(1) .cta-card-arrow { color: var(--red); }
.cta-card:nth-child(2) .cta-card-label,
.cta-card:nth-child(2) .cta-card-arrow { color: var(--purple); }
.cta-card:nth-child(3) .cta-card-label,
.cta-card:nth-child(3) .cta-card-arrow { color: var(--gold); }
.cta-card:nth-child(4) .cta-card-label,
.cta-card:nth-child(4) .cta-card-arrow { color: #5aad7e; }

/* ─── SERVICE CARDS ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  padding-top: 24px;
  border-top: 2px solid var(--gold);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--near-black);
}
.service-card p {
  font-size: 0.875rem;
  color: #585858;
  line-height: 1.65;
}

/* ─── BRANDS ─── */
.brands-section {
  background: var(--near-black);
  padding: 56px 28px;
}
.brands-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.brands-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 36px;
}
.brands-logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 32px;
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  filter: brightness(0) invert(1);
}
.brand-logo:hover { opacity: 1; }
.brand-logo img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* ─── HOURS ─── */
.hours-block { display: grid; gap: 4px; }
.hours-days {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--near-black);
}
.hours-time {
  font-size: 0.875rem;
  color: #777;
  letter-spacing: 0.05em;
}
.hours-note {
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 36px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-sans);
}
.btn-dark { background: var(--near-black); color: #fff; }
.btn-dark:hover { background: #2e2e2e; }
.btn-gold { background: var(--gold); color: var(--near-black); }
.btn-gold:hover { background: #dbb84e; }
.btn-outline {
  background: transparent;
  color: var(--near-black);
  border: 1px solid var(--near-black);
}
.btn-outline:hover { background: var(--near-black); color: #fff; }

/* ─── TESTIMONIALS ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  padding: 36px 32px;
  border-top: 3px solid var(--purple);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--near-black);
  margin-bottom: 22px;
  position: relative;
  padding-left: 20px;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-serif);
}
.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

/* ─── GALLERY ─── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.instagram-embed-wrapper {
  background: #fff;
  border: 1px solid #e8e0d0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram-placeholder-card {
  text-align: center;
  padding: 48px 32px;
}
.instagram-placeholder-card .ig-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.3;
}
.instagram-placeholder-card p {
  font-size: 0.82rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}
.youtube-placeholder {
  background: var(--near-black);
  padding: 80px 40px;
  text-align: center;
  margin-top: 36px;
}
.youtube-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.25;
}
.youtube-placeholder h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.youtube-placeholder p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.35);
  max-width: 360px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  margin-top: 28px;
}
.social-link:hover { opacity: 0.75; }

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  gap: 60px;
  margin-top: 48px;
}
.contact-details { display: grid; gap: 32px; }
.contact-item {}
.contact-item-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.contact-item-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--near-black);
  line-height: 1.5;
}
.contact-item-value a { transition: color 0.2s; }
.contact-item-value a:hover { color: var(--gold); }
.map-embed {
  width: 100%;
  height: 320px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
  display: block;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--near-black);
  padding: 64px 28px 40px;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}
.footer-brand-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  max-width: 200px;
}
.footer-col-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--gold); }
.footer-col-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}
.footer-col-text a { transition: color 0.2s; }
.footer-col-text a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}
.footer-ig {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--gold); }

/* Instagram link with icon */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.ig-link:hover { color: var(--gold); }
.ig-link svg { flex-shrink: 0; }

/* Contact page button override — prevent grid stretch */
.contact-details .btn {
  justify-self: start;
  text-align: center;
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-item:first-child { grid-column: 1 / -1; aspect-ratio: 21/7; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .cta-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
  .photo-item:first-child { grid-column: 1 / 3; aspect-ratio: 8/3; }
.photo-grid--bw .photo-item img { filter: grayscale(1); }
}

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