/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { min-height: 100vh; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Custom Properties ─── */
:root {
  --charcoal-900: #1e1e23;
  --charcoal-800: #2a2a30;
  --charcoal-700: #35353c;
  --charcoal-500: #565661;
  --charcoal-300: #9b9ba5;
  --charcoal-100: #e3e3e6;
  --charcoal-50: #f6f6f7;
  --coral-500: #E8635B;
  --coral-400: #f57053;
  --coral-300: #faa18f;
  --coral-600: #dc4f46;
  --coral-950: #4a1210;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Label ─── */
.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 16px;
}

/* ─── Section Headlines ─── */
.section__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal-900);
  margin-bottom: 24px;
}
.section__headline--light {
  color: #ffffff;
}
.section__sub {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal-500);
  max-width: 560px;
}
.section {
  padding: 100px 0;
}
.section--dark {
  background: var(--charcoal-900);
}
.section--light {
  background: #ffffff;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(30, 30, 35, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--coral-500);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.3s var(--ease-out);
}
.nav__logo:hover .nav__logo-mark {
  transform: rotate(-8deg) scale(1.05);
}
.nav__logo-text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral-500);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  background: var(--coral-500);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--coral-600);
  transform: translateY(-1px);
}

/* Nav toggle */
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.3s;
}
.nav__toggle:hover { background: rgba(255,255,255,0.1); }
.nav__icon { display: none; }
.nav__icon--open { display: block; }
.nav__icon--close { display: none; }
.nav.scrolled .nav__icon { color: #fff; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(18, 18, 21, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 12px 24px;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.mobile-menu__link:hover {
  color: var(--coral-400);
  transform: scale(1.03);
}
.mobile-menu__link--cta {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--coral-500);
  padding: 16px 40px;
  border-radius: 10px;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 35, 0.92) 0%,
    rgba(74, 18, 16, 0.85) 50%,
    rgba(30, 30, 35, 0.90) 100%
  );
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232, 99, 91, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(245, 112, 83, 0.1) 0%, transparent 50%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  padding-top: 80px;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-400);
  margin-bottom: 24px;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 28px;
}
.hero__accent {
  color: var(--coral-300);
  font-style: italic;
  font-weight: 700;
}
.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bobble 2s ease-in-out infinite;
  transition: color 0.3s;
}
.hero__scroll:hover { color: var(--coral-400); }
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--coral {
  background: var(--coral-500);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 99, 91, 0.35);
}
.btn--coral:hover {
  background: var(--coral-600);
  box-shadow: 0 8px 30px rgba(232, 99, 91, 0.45);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline-light:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.btn--lg {
  padding: 18px 44px;
  font-size: 1.0625rem;
  border-radius: 12px;
}
.btn--full {
  width: 100%;
}

/* ─── About ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.about__image {
  position: relative;
}
.about__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.about__image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--coral-500);
  border-radius: 16px;
  z-index: 0;
  opacity: 0.6;
}

/* ─── Divider ─── */
.divider {
  background: var(--charcoal-900);
  overflow: hidden;
}

/* ─── Services ─── */
.services__header {
  text-align: center;
  margin-bottom: 64px;
}
.services__header .section__sub {
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #ffffff;
  border: 1px solid var(--charcoal-100);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30, 30, 35, 0.1);
  border-color: var(--coral-200);
}
.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(232, 99, 91, 0.12) 0%, rgba(232, 99, 91, 0.04) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-500);
  margin-bottom: 24px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.card:hover .card__icon {
  background: var(--coral-500);
  color: #fff;
  transform: scale(1.05);
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 12px;
}
.card__body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--charcoal-500);
}

/* ─── Gallery ─── */
.gallery__header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: auto;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.gallery__item:hover img {
  transform: scale(1.06);
}
.gallery__item:nth-child(2),
.gallery__item:nth-child(4),
.gallery__item:nth-child(6) {
  aspect-ratio: 3/4;
}
.gallery__item:nth-child(1),
.gallery__item:nth-child(3),
.gallery__item:nth-child(5) {
  aspect-ratio: 3/2;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--coral-950) 0%, var(--charcoal-900) 60%, #1a1a2e 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 99, 91, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 112, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-400);
  margin-bottom: 20px;
}
.cta-banner__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}
.cta-banner__body {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

/* ─── Contact ─── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal-500);
  margin-bottom: 36px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal-700);
}
.contact__detail svg {
  color: var(--coral-500);
  flex-shrink: 0;
}
.contact__detail a {
  color: var(--charcoal-700);
  transition: color 0.3s;
}
.contact__detail a:hover { color: var(--coral-500); }

/* Form */
.contact__form-wrap {
  background: var(--charcoal-50);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--charcoal-100);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--charcoal-900);
  background: #ffffff;
  border: 1.5px solid var(--charcoal-100);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}
.form__input:focus {
  border-color: var(--coral-500);
  box-shadow: 0 0 0 3px rgba(232, 99, 91, 0.12);
}
.form__input::placeholder { color: var(--charcoal-300); }
.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239b9ba5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__note {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--charcoal-300);
  text-align: center;
  margin-top: 16px;
}
.form__success {
  text-align: center;
  padding: 40px 20px;
}
.form__success svg {
  color: var(--coral-500);
  margin: 0 auto 20px;
}
.form__success-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 12px;
}
.form__success-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal-500);
}

/* ─── Footer ─── */
.footer {
  background: var(--charcoal-950);
  padding: 60px 0 32px;
}
.footer__top {
  margin-bottom: 40px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo .nav__logo-mark {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}
.footer__logo .nav__logo-text {
  font-size: 1.05rem;
}
.footer__tagline {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 380px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer__location {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__icon--open { display: block; }
  .nav__icon--close { display: none; }
  .nav.scrolled .nav__icon--open { display: block; }
  .nav.scrolled .nav__icon--close { display: none; }

  .hero__content { padding-top: 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .section { padding: 72px 0; }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__img { height: 360px; }
  .about__image-accent { top: -12px; right: -12px; width: 80px; height: 80px; }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(6) {
    aspect-ratio: 1;
  }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(5) {
    aspect-ratio: 4/3;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact__form-wrap { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__headline { font-size: clamp(2rem, 9vw, 3rem); }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(6),
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(5) {
    aspect-ratio: 4/3;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
