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

:root {
  --bg-dark: #0F0D0A;
  --bg-card: #1A1612;
  --bg-card-hover: #201C17;
  --bg-elevated: #231F1A;
  --terracotta: #C0603A;
  --terracotta-light: #D48060;
  --terracotta-dark: #9A4A2A;
  --sand: #F5E6D3;
  --sand-muted: #C4B49A;
  --sand-dim: #8A7E70;
  --gold: #C9A84C;
  --gold-light: #E0C06E;
  --white: #FAFAF8;
  --text-primary: #F5F0EA;
  --text-secondary: #B8AFA4;
  --text-muted: #7A7268;
  --border: rgba(196, 96, 58, 0.15);
  --border-light: rgba(245, 230, 211, 0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(196, 96, 58, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ── Typography ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196, 96, 58, 0.1);
  border: 1px solid rgba(196, 96, 58, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-title .accent {
  color: var(--terracotta);
  font-style: italic;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 96, 58, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 96, 58, 0.5);
}

.btn--ghost {
  background: rgba(245, 230, 211, 0.06);
  color: var(--sand);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(245, 230, 211, 0.12);
  border-color: var(--terracotta);
  color: var(--terracotta-light);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(15, 13, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.nav__logo em {
  color: var(--terracotta);
  font-style: italic;
}

.nav__logo-icon {
  flex-shrink: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}

.nav__link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(245, 230, 211, 0.06);
}

.nav__link--cta {
  background: rgba(196, 96, 58, 0.12);
  color: var(--terracotta-light);
  border: 1px solid rgba(196, 96, 58, 0.25);
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: rgba(196, 96, 58, 0.2);
  color: var(--terracotta);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: all var(--transition);
  margin-left: auto;
}

.nav__toggle:hover {
  background: rgba(245, 230, 211, 0.06);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(196, 96, 58, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    url('https://images.pexels.com/photos/5691503/pexels-photo-5691503.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: 0.18;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,13,10,0.4) 0%, var(--bg-dark) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}

.hero__card {
  background: rgba(26, 22, 18, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero__subhead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(26, 22, 18, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 96, 58, 0.3);
  box-shadow: var(--shadow-glow);
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Services ── */
.services {
  padding: 120px 0;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--terracotta), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 96, 58, 0.3);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.service-card__img {
  height: 200px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img img {
  transform: scale(1.08);
}

.service-card__body {
  padding: 28px 24px;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 96, 58, 0.1);
  border: 1px solid rgba(196, 96, 58, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-card__body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── About ── */
.about {
  padding: 120px 0;
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__content .section-title {
  text-align: left;
}

.about__content .section-tag {
  text-align: left;
}

.about__content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about__list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.about__list svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.about__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(196, 96, 58, 0.2);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--terracotta), transparent);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  min-height: 340px;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
  grid-column: span 6;
  grid-row: 2 / 3;
  min-height: 240px;
}

.gallery__item--wide {
  grid-column: 1 / -1;
  grid-row: 3 / 4;
  min-height: 260px;
}

/* ── CTA / Contact ── */
.cta {
  padding: 120px 0;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(196, 96, 58, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.cta__info .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.cta__info .section-tag {
  text-align: left;
}

.cta__info > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.cta__detail:hover {
  color: var(--terracotta-light);
}

.cta__detail svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.cta__detail a:hover {
  color: var(--terracotta-light);
}

.cta__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.cta__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(245, 230, 211, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: rgba(196, 96, 58, 0.05);
  box-shadow: 0 0 0 3px rgba(196, 96, 58, 0.1);
}

.form-group select {
  appearance: none;
  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='%237A7268' 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;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--terracotta-light);
}

.footer__contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer__contact a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--terracotta-light);
}

.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--terracotta);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

/* ── Mobile Menu Overlay ── */
.nav__menu-overlay {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    max-width: 400px;
  }

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

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image {
    order: -1;
    max-width: 500px;
  }

  .about__content .section-title,
  .about__content .section-tag {
    text-align: center;
  }

  .about__content p {
    text-align: center;
  }

  .about__list {
    max-width: 400px;
    margin: 32px auto 0;
  }

  .about__list li {
    justify-content: flex-start;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta__info .section-title,
  .cta__info .section-tag {
    text-align: left;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(15, 13, 10, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right var(--transition);
    border-left: 1px solid var(--border-light);
    z-index: 999;
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__card {
    padding: 36px 28px;
  }

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

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

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

  .gallery__item--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }

  .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 180px;
  }

  .gallery__item--wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }

  .cta__form-wrap {
    padding: 28px 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__card {
    padding: 28px 20px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-card__number {
    font-size: 1.4rem;
  }

  .services,
  .about,
  .gallery,
  .cta {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

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

  .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    grid-column: 1 / -1;
  }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
