:root {
  --terracotta: #c45c3e;
  --terracotta-deep: #9a3f28;
  --azul: #2d5f8a;
  --azul-deep: #1e4260;
  --gold: #d4a574;
  --gold-light: #f5e8d4;
  --cream: #faf6f0;
  --white: #ffffff;
  --ink: #1e2428;
  --muted: #5a6570;
  --line: rgba(30, 36, 40, 0.09);
  --shadow: 0 20px 50px rgba(30, 36, 40, 0.12);
  --radius: 16px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0.9rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--terracotta), var(--azul));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(196, 92, 62, 0.35);
}

.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-desktop {
  display: none;
  gap: 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-desktop a:hover {
  color: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(196, 92, 62, 0.35);
}

.btn-outline {
  border-color: var(--azul);
  color: var(--azul-deep);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(45, 95, 138, 0.08);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.mobile-nav.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(30, 36, 40, 0.88) 0%,
    rgba(30, 36, 40, 0.55) 45%,
    rgba(196, 92, 62, 0.25) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.25);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 1rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  color: var(--white);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stats span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero-visual {
  display: none;
}

.trust-bar {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 1rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-inner span::before {
  content: "✦ ";
  color: var(--terracotta);
}

section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.eyebrow {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card > div {
  padding: 1.35rem 1.5rem 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.price {
  font-weight: 700;
  color: var(--azul-deep);
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.about-images img:first-child {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-images img:last-child {
  border-radius: var(--radius);
  margin-top: 2rem;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  margin: 0 0 1rem;
}

.about-copy p {
  color: var(--muted);
}

.about-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
}

.gallery-grid figure:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.reviews {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--cream) 100%);
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(30, 36, 40, 0.06);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--ink);
}

.review-card cite {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: normal;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.trust-badges span {
  padding: 0.45rem 1rem;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-details li {
  margin-bottom: 1rem;
}

.contact-details strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}

.contact-details a:hover {
  color: var(--azul);
}

.booking-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row.two {
  display: grid;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--azul);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-visual {
    display: block;
    position: relative;
  }

  .hero-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.15);
  }

  .hero-badge {
    position: absolute;
    bottom: -0.5rem;
    left: 1rem;
    right: 1rem;
    background: var(--white);
    color: var(--ink);
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow);
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid figure:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
