/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --terracotta: #B8534A;
  --terracotta-dark: #9E443C;
  --terracotta-light: #E8A898;
  --sand: #F5F0EB;
  --sand-dark: #E8E0D8;
  --sand-mid: #EDE6DD;
  --charcoal: #2A2A2A;
  --charcoal-light: #4A4A4A;
  --neutral: #6B6B6B;
  --neutral-light: #9A9A9A;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(42,42,42,0.06), 0 1px 2px rgba(42,42,42,0.04);
  --shadow-md: 0 4px 16px rgba(42,42,42,0.08), 0 2px 4px rgba(42,42,42,0.04);
  --shadow-lg: 0 12px 40px rgba(42,42,42,0.10), 0 4px 12px rgba(42,42,42,0.05);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42,42,42,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--charcoal);
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

/* ── Nav ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--charcoal);
  background: rgba(42,42,42,0.05);
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--terracotta-dark) !important;
}

/* ── Hero ── */
.hero {
  padding-top: 76px;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline br {
  display: none;
}

.hero-headline em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--neutral);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(42,42,42,0.2);
}

.btn-ghost:hover {
  border-color: var(--charcoal);
  background: rgba(42,42,42,0.03);
}

.btn-ghost-sm {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--transition);
}

.btn-ghost-sm:hover {
  background: var(--terracotta);
  color: var(--white);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--neutral-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
}

.hero-img-stack {
  position: relative;
  height: 780px;
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 780px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-img-accent {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--sand);
}

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

.hero-accent-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}

.hero-accent-box svg {
  color: var(--terracotta-light);
  flex-shrink: 0;
}

.hero-accent-box span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Section Shared ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

/* ── Services ── */
.services {
  background: var(--sand);
  padding: 100px 0 120px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid rgba(42,42,42,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: var(--radius-sm);
  color: var(--terracotta);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--terracotta);
  color: var(--white);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neutral);
  flex: 1;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta);
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
}

.service-link svg {
  transition: var(--transition);
}

/* ── About ── */
.about {
  background: var(--white);
  padding: 100px 0;
}

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

.about-visual {
  position: relative;
  height: 640px;
}

.about-img-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 45%;
  right: -10px;
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--neutral);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
}

.about-feature svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ── Why Us ── */
.why-us {
  background: var(--charcoal);
  padding: 100px 0;
}

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

.why-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
}

.why-item-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-item-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neutral-light);
}

.why-us-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-img-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-img-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* ── Quote ── */
.quote-section {
  background: var(--sand-mid);
  padding: 100px 0;
}

.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.4;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 32px;
  font-style: italic;
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.quote-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.quote-location {
  font-size: 0.85rem;
  color: var(--neutral-light);
}

/* ── Contact ── */
.contact {
  background: var(--white);
  padding: 100px 0;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: var(--radius-sm);
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-light);
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-weight: 500;
}

.contact-detail-value a {
  color: var(--charcoal);
  transition: var(--transition);
}

.contact-detail-value a:hover {
  color: var(--terracotta);
}

.btn-directions {
  margin-top: 8px;
}

/* ── Contact Form ── */
.contact-form-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(42,42,42,0.06);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--neutral);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-light);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid rgba(42,42,42,0.12);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184,83,74,0.1);
}

.form-input::placeholder {
  color: var(--neutral-light);
}

.form-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'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

/* ── Form Success ── */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success svg {
  color: var(--terracotta);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}

.success-text {
  font-size: 0.95rem;
  color: var(--neutral);
  line-height: 1.6;
  max-width: 320px;
}

/* ── Map ── */
.map-section {
  background: var(--sand);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  filter: grayscale(30%) contrast(1.05);
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 72px 0 0;
}

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

.logo-light .logo-text {
  color: var(--white);
}

.logo-light .logo-sub {
  color: var(--neutral-light);
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neutral-light);
  margin-top: 20px;
  max-width: 300px;
}

.footer-nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-light);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  line-height: 1.5;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--neutral-light);
}

/* ── Animations ── */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-img-stack {
    height: 600px;
  }

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

  .about-grid,
  .why-us-inner,
  .contact-grid {
    gap: 48px;
  }
}

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

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--sand);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
  }

  .nav-list.is-open {
    transform: translateX(0);
  }

  .nav-list a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-headline br {
    display: block;
  }

  .hero-stats {
    gap: 24px;
  }

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

  .about-grid,
  .why-us-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 400px;
    order: -1;
  }

  .why-us-visual {
    display: none;
  }

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

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

  .contact-form-card {
    padding: 32px 24px;
  }

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

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

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

  .hero {
    padding-top: 76px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }
}
