@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400&display=swap');

/* ── TOKENS ── */
:root {
  --pine:    #1E3A2F;
  --forest:  #2D5741;
  --sage:    #7DA882;
  --mist:    #E8F0E9;
  --snow:    #F7FAF7;
  --gold:    #C9A84C;
  --earth:   #6B4C2A;
  --ink:     #1A1A1A;
  --stone:   #5A5A5A;
  --light:   #FFFFFF;

  --display: 'Playfair Display', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --mono:    'DM Mono', monospace;

  --r-sm: 4px;
  --r-md: 12px;
  --r-lg: 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--snow); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(30, 58, 47, 0.95);
  backdrop-filter: blur(10px);
  height: 70px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-brand span { font-family: var(--display); font-size: 1.2rem; color: var(--light); letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--pine) !important; padding: 8px 20px; border-radius: var(--r-sm); font-weight: 500 !important; transition: opacity 0.2s !important; }
.nav-cta:hover { opacity: 0.85; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--light); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://static.wixstatic.com/media/11062b_f960368972304b679e6b95c0fdbfb931~mv2.jpg') center/cover no-repeat;
  filter: brightness(0.45);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 5vw; max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem;
  display: inline-block; border: 1px solid rgba(201,168,76,0.4); padding: 6px 16px; border-radius: 2px;
}
.hero-title {
  font-family: var(--display); font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--light); line-height: 1.1; margin-bottom: 1.5rem; font-weight: 700;
}
.hero-title em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 540px; margin: 0 auto 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--pine); padding: 14px 32px;
  border-radius: var(--r-sm); font-weight: 500; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.03em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.5); color: var(--light);
  padding: 14px 32px; border-radius: var(--r-sm); font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--light); background: rgba(255,255,255,0.08); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── SECTION BASE ── */
section { padding: 6rem 5vw; }
.section-label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--pine); line-height: 1.2; margin-bottom: 1rem;
}
.section-sub { color: var(--stone); max-width: 520px; line-height: 1.7; }

/* ── SERVICES ── */
.services { background: var(--light); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.service-card {
  border: 1px solid rgba(30,58,47,0.1); border-radius: var(--r-md);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  background: var(--snow);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(30,58,47,0.12); }
.service-img { height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-info { padding: 1.5rem; }
.service-tag {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.service-info h3 { font-family: var(--display); font-size: 1.3rem; color: var(--pine); margin-bottom: 0.5rem; }
.service-info p { font-size: 0.9rem; color: var(--stone); line-height: 1.6; }

/* ── WHY US ── */
.why { background: var(--pine); }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-header { margin-bottom: 3.5rem; }
.why-header .section-title { color: var(--light); }
.why-header .section-sub { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 2rem; transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-icon {
  width: 48px; height: 48px; background: rgba(201,168,76,0.15);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem;
}
.why-card h3 { font-family: var(--display); font-size: 1.25rem; color: var(--light); margin-bottom: 0.4rem; }
.why-card .why-sub { font-size: 0.78rem; font-family: var(--mono); color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--mist); }
.testimonials-inner { max-width: 1000px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header .section-sub { margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--light); border-radius: var(--r-md); padding: 2rem;
  border: 1px solid rgba(30,58,47,0.08);
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: var(--display); font-style: italic; font-size: 1rem; color: var(--pine); line-height: 1.6; margin-bottom: 1.25rem; }
.testimonial-author { font-size: 0.85rem; font-weight: 500; color: var(--stone); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--forest); padding: 4rem 5vw;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.contact-strip-text h2 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--light); margin-bottom: 0.5rem; }
.contact-strip-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.contact-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--ink); padding: 3rem 5vw 1.5rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.footer-brand h3 { font-family: var(--display); font-size: 1.1rem; color: var(--light); margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-family: var(--mono); letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; font-size: 0.8rem; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 5vw 80px; text-align: center;
  background: linear-gradient(180deg, var(--pine) 0%, var(--forest) 100%);
}
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 4rem); color: var(--light); line-height: 1.15; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

/* ── ABOUT PAGE ── */
.about-story { background: var(--light); }
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--r-lg); overflow: hidden; height: 480px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; height: 160px; border-radius: var(--r-md); overflow: hidden;
  border: 4px solid var(--snow); box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { color: var(--stone); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }
.about-stats { display: flex; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.about-stat { }
.about-stat .num { font-family: var(--display); font-size: 2.2rem; color: var(--pine); font-weight: 700; line-height: 1; }
.about-stat .lbl { font-size: 0.78rem; color: var(--stone); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── CONTACT PAGE ── */
.contact-page { background: var(--light); }
.contact-layout { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--display); font-size: 1.5rem; color: var(--pine); margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--mist); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.8rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 0.25rem; }
.contact-detail-text a, .contact-detail-text span { color: var(--stone); font-size: 0.95rem; }
.contact-form-wrap { background: var(--snow); border-radius: var(--r-lg); padding: 2.5rem; border: 1px solid rgba(30,58,47,0.08); }
.contact-form-wrap h3 { font-family: var(--display); font-size: 1.4rem; color: var(--pine); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(30,58,47,0.15);
  border-radius: var(--r-sm); font-family: var(--body); font-size: 0.95rem;
  background: var(--light); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(125,168,130,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; background: var(--pine); color: var(--light); border: none; border-radius: var(--r-sm); font-family: var(--body); font-size: 1rem; font-weight: 500; cursor: pointer; transition: background 0.2s; letter-spacing: 0.03em; }
.form-submit:hover { background: var(--forest); }

/* ── PORTFOLIO PAGE ── */
.portfolio-page { background: var(--snow); }
.portfolio-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.portfolio-card { border-radius: var(--r-md); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,58,47,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { font-family: var(--display); color: var(--light); font-size: 1.1rem; }
.portfolio-overlay span { font-size: 0.78rem; color: var(--gold); font-family: var(--mono); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--pine); padding: 2rem; gap: 1.5rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-strip { flex-direction: column; text-align: center; }
  .contact-strip-actions { justify-content: center; }
}
