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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: #ffffff; color: #161616; font-family: 'Inter', sans-serif; font-weight: 300; }

body { overflow-x: hidden; }

::selection { background: #161616; color: #ffffff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }

/* ===== TYPOGRAPHY ===== */
.heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #161616;
}

.heading-xl { font-size: clamp(2.5rem, 6vw, 6rem); font-weight: 200; letter-spacing: -0.03em; }
.heading-lg { font-size: clamp(2rem, 4vw, 4rem); font-weight: 300; }
.heading-md { font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 400; }
.heading-sm { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }

.body-text { font-size: 0.95rem; color: #9a9a9a; line-height: 1.7; font-weight: 300; }

.accent-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: #9a9a9a;
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  margin: 0;
  border: none;
}

/* ===== NAV ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 2rem 0;
  transition: 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.nav-logo img { height: 36px; width: auto; }

.nav-brand {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #161616;
  line-height: 1.2;
}

.nav-brand span {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a9a;
  display: block;
}

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }

.nav-links a {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a9a;
  transition: 0.3s ease;
}

.nav-links a:hover { color: #161616; }

.nav-cta a {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #161616;
  color: #ffffff;
  padding: 0.7rem 1.8rem;
  transition: 0.3s ease;
}

.nav-cta a:hover { background: #9a9a9a; }

.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 102; width: 40px; height: 40px; }
.hamburger span { width: 22px; height: 1.5px; background: #161616; transition: 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-content { max-width: 720px; }

.hero-tag {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 2.5rem;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  display: block;
  font-size: clamp(1rem, 2vw, 2rem);
  color: #9a9a9a;
  margin-top: 0.5rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero-desc {
  font-size: 0.95rem;
  color: #9a9a9a;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-fill {
  background: #161616;
  color: #ffffff;
}

.btn-fill:hover { background: #9a9a9a; }

.btn-outline {
  background: transparent;
  color: #161616;
  border: 1px solid #e8e8e8;
}

.btn-outline:hover { border-color: #161616; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }

.section-header {
  margin-bottom: 4rem;
  max-width: 500px;
}

.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-tag {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1rem; }
.section-desc { margin-bottom: 0; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-content .section-title { margin-bottom: 1.5rem; }

.about-content p {
  font-size: 0.95rem;
  color: #9a9a9a;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}

.about-signature h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #161616;
}

.about-signature p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: #9a9a9a;
  margin-top: 0.2rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card { padding: 0; }

.service-card-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: #d4d4d4;
  margin-bottom: 1rem;
}

.service-card h3 { margin-bottom: 0.8rem; }

.service-card p {
  font-size: 0.85rem;
  color: #9a9a9a;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.service-card-link {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #161616;
  transition: 0.3s ease;
}

.service-card-link:hover { color: #9a9a9a; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f4f4f4;
}

.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:nth-child(1) img { min-height: 440px; }
.gallery-item:nth-child(4) img { min-height: 440px; }

.gallery-item:hover img { transform: scale(1.02); }

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(22,22,22,0.6) 0%, transparent 100%);
  opacity: 0;
  transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
}

.gallery-overlay p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  padding: 0;
}

.testimonial-stars {
  color: #d4d4d4;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: #161616;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9a9a;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Unbounded', sans-serif;
  font-weight: 200;
  font-size: 3.5rem;
  color: #161616;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a9a;
}

/* ===== CTA ===== */
.cta-section {
  padding: 6rem 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 1rem; }

.cta-section p {
  font-size: 0.95rem;
  color: #9a9a9a;
  max-width: 400px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #161616;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: #9a9a9a;
  line-height: 1.6;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a, .footer-links span {
  font-size: 0.8rem;
  color: #9a9a9a;
  font-weight: 300;
  transition: 0.3s ease;
}

.footer-links a:hover { color: #161616; }

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  color: #9a9a9a;
  transition: 0.3s ease;
}

.footer-social a:hover { border-color: #161616; color: #161616; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #9a9a9a;
  font-weight: 300;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000;
  display: none; align-items: center; justify-content: center;
}
.lightbox-content { position: relative; max-width: 90%; max-height: 90%; text-align: center; }
.lightbox-img { max-width: 100%; max-height: 75vh; object-fit: contain; }
.lightbox-caption { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 1rem; color: #fff; margin-top: 1.5rem; }
.lightbox-close { position: absolute; top: -2.5rem; right: 0; font-size: 2rem; color: rgba(255,255,255,0.3); background: none; border: none; cursor: pointer; font-weight: 300; }
.lightbox-close:hover { color: #fff; }
.lightbox-btn { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: rgba(255,255,255,0.2); background: none; border: none; cursor: pointer; padding: 1rem; }
.lightbox-btn:hover { color: #fff; }
.lightbox-prev { left: -3rem; }
.lightbox-next { right: -3rem; }

/* ===== PAGE HERO (inner) ===== */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
}

.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero h1 span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.5rem);
  color: #9a9a9a;
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero .section-tag { margin-bottom: 1.5rem; }

/* ===== SERVICE BLOCKS ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  background: #ffffff;
  border: 1px solid #e8e8e8;
}

.service-block:nth-child(even) .service-block-img { order: 1; }
.service-block:nth-child(even) .service-block-content { order: 0; }

.service-block-img { overflow: hidden; }
.service-block-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; transition: 0.6s ease; }
.service-block:hover .service-block-img img { transform: scale(1.03); }

.service-block-content { padding: 3.5rem 3rem; }

.service-block-content .num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: #d4d4d4;
  margin-bottom: 0.5rem;
}

.service-block-content h3 { margin-bottom: 1rem; }

.service-block-content p {
  font-size: 0.85rem;
  color: #9a9a9a;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p { font-size: 0.95rem; color: #9a9a9a; font-weight: 300; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px; height: 40px;
  background: #f4f4f4;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #161616;
  border-radius: 50%;
}

.contact-row h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 0.2rem;
}

.contact-row p, .contact-row a {
  font-size: 0.9rem;
  color: #161616;
  font-weight: 300;
}

.contact-row a:hover { color: #9a9a9a; }

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 3rem;
}

.contact-form-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #161616;
  margin-bottom: 0.3rem;
}

.contact-form-card > p {
  font-size: 0.85rem;
  color: #9a9a9a;
  font-weight: 300;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: #fafafa;
  border: 1px solid #ececec;
  padding: 0.85rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #161616;
  outline: none;
  transition: 0.3s ease;
}

.form-control:focus {
  border-color: #c4c4c4;
  background: #ffffff;
}

select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239a9a9a' d='M5 6L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

textarea.form-control { resize: vertical; min-height: 110px; }

.form-alert { padding: 0.8rem; margin-top: 1.5rem; font-size: 0.8rem; display: none; font-weight: 300; }
.form-alert-success { background: #f4f4f4; color: #4a6a4a; }
.form-alert-error { background: #f4f4f4; color: #a05050; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid #e8e8e8; padding: 0; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #161616;
  user-select: none;
}

.faq-question span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #d4d4d4;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question span { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.85rem;
  color: #9a9a9a;
  line-height: 1.6;
  font-weight: 300;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(255,255,255,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 101; }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .nav-links a { font-size: 0.9rem; color: #161616 !important; }
  .nav-cta { display: none; }

  .hero { padding: 6rem 1.5rem 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(1) img { min-height: 320px; }
  .gallery-item:nth-child(4) img { min-height: 320px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem; }
  .service-block-content { padding: 2rem; }
  .page-hero { padding: 7rem 0 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}