:root {
  --bg: #f6f1eb;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --ink: #1f1a16;
  --muted: #6a6159;
  --line: #dfd4c8;
  --accent: #b0673a;
  --accent-dark: #8d4f29;
  --accent-soft: #ecddcf;
  --dark: #13110f;
  --dark-soft: #201b17;
  --success: #2f7d62;
  --shadow: 0 18px 45px rgba(20, 14, 10, 0.12);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(176, 103, 58, 0.08), transparent 35%), var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.page-shell {
  min-height: calc(100vh - 180px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(246, 241, 235, 0.84);
  border-bottom: 1px solid rgba(223, 212, 200, 0.9);
}

.site-header-shell,
.hero-nav,
.section-heading.split,
.contact-strip-shell,
.site-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header-shell {
  min-height: 88px;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-tagline,
.footer-copy,
.section-eyebrow,
.process-card span,
.contact-chip-label,
.footer-title {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav-links,
.site-header-actions,
.footer-links,
.hero-actions,
.stats-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav-links a,
.footer-links a,
.site-header-actions a,
.language-switch {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav-links a:hover,
.footer-links a:hover,
.site-header-actions a:hover,
.language-switch:hover {
  color: var(--ink);
}

.language-switch {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: var(--surface-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn.compact {
  padding: 0.75rem 1.15rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-secondary,
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.hero-section {
  padding: 3rem 0 2rem;
  background-position: center;
  background-size: cover;
}

.hero-shell {
  display: grid;
  gap: 3rem;
}

.hero-copy {
  width: min(760px, 100%);
  padding: 4rem 0 2rem;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.about-teaser-content h2,
.contact-strip-shell h2,
.page-hero h1,
.detail-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.95;
  margin: 0.65rem 0 1rem;
}

.hero-copy h1 span,
.section-dark .section-heading h2,
.project-card p {
  color: #f3c7a8;
}

.hero-description,
.about-copy p,
.page-hero p,
.detail-body p,
.expertise-card p,
.process-card p,
.stacked-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-services-grid,
.expertise-grid,
.projects-grid,
.process-grid,
.listing-grid,
.principles-list,
.detail-meta,
.contact-page-grid,
.form-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-services-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hero-service-card,
.expertise-card,
.process-card,
.stacked-card,
.contact-chip,
.listing-card,
.detail-panel,
.contact-form-card,
.alert-card {
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-service-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  min-height: 170px;
}

.hero-service-card i,
.listing-card i {
  font-size: 1.5rem;
  color: #f3c7a8;
}

.hero-service-card h2,
.expertise-card h3,
.project-card h3,
.process-card h3,
.listing-card h2,
.detail-panel h2,
.contact-form-card h2,
.stacked-card h2,
.page-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  margin: 0.9rem 0 0.65rem;
}

.hero-service-card p,
.project-card span,
.principles-list li,
.detail-meta div,
.form-help,
.alert-card {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-section .listing-card p,
.page-section .listing-highlights li,
.section-light .listing-card p,
.section-light .listing-highlights li,
.section-light .expertise-card p,
.section-light .process-card p,
.service-detail .detail-panel p,
.service-detail .service-detail-copy,
.service-detail .service-detail-lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-detail .service-detail-copy {
  font-size: 1.05rem;
  line-height: 1.85;
}

.service-detail .service-detail-lead {
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-block,
.page-hero,
.page-section,
.detail-hero,
.detail-body {
  padding: 5.5rem 0;
}

.section-light,
.page-hero,
.page-section,
.detail-body,
.contact-page {
  color: var(--ink);
}

.section-light .section-heading h2,
.about-copy h2,
.about-teaser-content h2,
.contact-strip-shell h2,
.page-hero h1,
.detail-hero h1,
.detail-panel h2,
.contact-form-card h2,
.listing-card h2,
.stacked-card h2 {
  color: var(--ink);
}

.section-light .expertise-card,
.process-card,
.listing-card,
.detail-panel,
.contact-form-card,
.stacked-card,
.alert-card {
  background: var(--surface-strong);
  border: 1px solid rgba(223, 212, 200, 0.7);
}

.centered {
  text-align: center;
}

.expertise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expertise-card,
.process-card,
.listing-card,
.contact-form-card,
.stacked-card {
  padding: 2rem;
}

.expertise-card a,
.section-heading.split a,
.project-card a,
.listing-card a,
.stacked-card a {
  color: var(--accent);
  font-weight: 700;
}

.about-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(236, 221, 207, 0.55));
}

.about-teaser-section {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(236, 221, 207, 0.45));
}

.about-teaser-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(176, 103, 58, 0.1), transparent 42%);
  pointer-events: none;
}

.about-teaser-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-teaser-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.about-teaser-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-teaser-content h2 {
  margin: 0.45rem 0 1rem;
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
  line-height: 1.08;
}

.about-teaser-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-teaser-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-teaser-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--surface-strong);
  border: 1px solid rgba(223, 212, 200, 0.85);
  border-radius: 1.15rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about-teaser-pillar:hover {
  border-color: rgba(176, 103, 58, 0.35);
  box-shadow: 0 12px 28px rgba(20, 14, 10, 0.08);
  transform: translateY(-2px);
}

.about-teaser-pillar-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.about-teaser-pillar-icon .contact-svg-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.about-teaser-pillar-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.about-teaser-pillar-body strong {
  font-size: 1rem;
  color: var(--ink);
}

.about-teaser-pillar-body span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-grid,
.contact-page-grid,
.detail-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-body {
  margin: 0;
  white-space: pre-line;
  line-height: 1.8;
}

.about-image-shell img,
.detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.75rem;
  box-shadow: var(--shadow);
}

.stats-row {
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stats-row strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--accent);
}

.stats-row span,
.detail-meta span,
.form-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-dark,
.detail-hero {
  background: linear-gradient(180deg, var(--dark), var(--dark-soft));
  color: #fff;
}

.section-heading.light-text a,
.detail-hero p,
.detail-meta div,
.project-card a {
  color: rgba(255, 255, 255, 0.82);
}

.projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  min-height: 340px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-position: center;
  background-size: cover;
}

.process-grid,
.listing-grid,
.principles-list,
.detail-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
  color: var(--accent);
}

.contact-strip-section {
  background: linear-gradient(180deg, var(--surface), rgba(236, 221, 207, 0.35));
}

.contact-strip-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(236, 221, 207, 0.55), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(176, 103, 58, 0.14);
  border-radius: 1.85rem;
  box-shadow: var(--shadow);
}

.contact-strip-shell::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 103, 58, 0.14), transparent 68%);
  pointer-events: none;
}

.contact-strip-intro {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 36rem;
}

.contact-strip-shell h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0.45rem 0 0.85rem;
}

.contact-strip-copy {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.contact-strip-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(100%, 28rem);
}

.contact-strip-actions-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-strip-actions-label .contact-svg-icon {
  color: var(--accent);
  opacity: 0.85;
}

.contact-strip-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: 100%;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-width: 0;
  padding: 1.35rem 1.5rem;
  background: var(--surface-strong);
  border: 1px solid rgba(223, 212, 200, 0.9);
  border-left: 3px solid transparent;
  box-shadow: 0 10px 28px rgba(20, 14, 10, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.contact-chip--whatsapp {
  border-left-color: rgba(37, 211, 102, 0.55);
}

.contact-chip--whatsapp:hover,
.contact-chip--whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.14);
}

.contact-chip--phone {
  border-left-color: rgba(176, 103, 58, 0.55);
}

.contact-chip--phone:hover,
.contact-chip--phone:focus-visible {
  border-color: rgba(176, 103, 58, 0.38);
  box-shadow: 0 18px 40px rgba(176, 103, 58, 0.14);
}

.contact-chip:focus-visible {
  box-shadow: 0 0 0 3px rgba(176, 103, 58, 0.28), 0 18px 40px rgba(20, 14, 10, 0.1);
}

.contact-chip--whatsapp:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.28), 0 18px 40px rgba(37, 211, 102, 0.12);
}

.contact-svg-icon {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.contact-svg-icon--arrow {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-svg-icon--small {
  width: 1rem;
  height: 1rem;
}

.contact-chip-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.contact-chip--whatsapp .contact-chip-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.contact-chip--phone .contact-chip-icon {
  background: rgba(176, 103, 58, 0.14);
  color: var(--accent);
}

.contact-chip-body {
  flex: 1;
  min-width: 0;
}

.contact-chip-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-chip strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  margin-top: 0.2rem;
  letter-spacing: normal;
  text-transform: none;
}

.contact-chip-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--line);
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-chip--whatsapp:hover .contact-chip-arrow,
.contact-chip--whatsapp:focus-visible .contact-chip-arrow {
  color: #25d366;
  transform: translateX(4px);
}

.contact-chip--phone:hover .contact-chip-arrow,
.contact-chip--phone:focus-visible .contact-chip-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.contact-strip-form-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-strip-form-link:hover,
.contact-strip-form-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.contact-strip-form-link .contact-svg-icon {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.85;
}

@media (min-width: 901px) {
  .contact-strip-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .contact-strip-actions {
    width: min(100%, 34rem);
  }
}

.site-footer {
  padding: 3rem 0;
  background: var(--dark);
  color: #fff;
}

.site-footer-grid {
  align-items: start;
}

.footer-copy,
.footer-title,
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-contact-list {
  display: grid;
  gap: 0.55rem;
}

.site-footer .footer-contact-link,
.site-footer .footer-contact-link:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer .footer-contact-link span {
  word-break: break-word;
}

.site-footer .footer-contact-link i {
  flex-shrink: 0;
  width: 0.95rem;
  font-size: 0.82rem;
  text-align: center;
  color: var(--accent);
}

.site-footer .footer-contact-link:hover,
.site-footer .footer-contact-link:focus-visible {
  color: #fff;
  outline: none;
}

.site-footer .footer-contact-link:hover i,
.site-footer .footer-contact-link:focus-visible i {
  color: #f0d4c2;
}

.site-footer .footer-contact-link--whatsapp i {
  color: #6ee7a0;
}

.site-footer .footer-contact-link--whatsapp:hover i,
.site-footer .footer-contact-link--whatsapp:focus-visible i {
  color: #9ef0bc;
}

.page-hero {
  background: linear-gradient(180deg, rgba(236, 221, 207, 0.5), rgba(255, 255, 255, 0.95));
}

.contact-page.section-block {
  padding: 3.5rem 0 5.5rem;
  background: linear-gradient(180deg, var(--surface), rgba(236, 221, 207, 0.28));
}

.listing-grid {
  margin-top: 2rem;
}

.listing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.1rem;
  margin-bottom: 1.2rem;
}

.listing-highlights,
.principles-list,
.detail-materials {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.listing-highlights li,
.principles-list li,
.detail-materials li {
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.detail-body-grid {
  align-items: start;
}

.detail-panel {
  padding: 2rem;
}

.detail-meta {
  margin-top: 1.5rem;
}

.service-detail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(236, 221, 207, 0.35));
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.service-detail-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.85rem;
  border: 1px solid rgba(176, 103, 58, 0.14);
  box-shadow: var(--shadow);
  background: rgba(236, 221, 207, 0.45);
}

.service-detail-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.service-detail-icon-badge {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  box-shadow: 0 12px 28px rgba(20, 14, 10, 0.14);
  font-size: 1.35rem;
}

.service-detail-intro {
  display: grid;
  gap: 0.85rem;
}

.service-detail-intro .service-detail-eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-detail-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--ink);
}

.service-detail-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 38rem;
}

.service-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.service-detail-back-link:hover {
  color: var(--accent-dark);
}

.service-detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.service-detail-scope h2,
.service-detail-highlights-panel h2 {
  margin-top: 0;
}

.service-detail-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  white-space: pre-line;
}

.service-detail-highlights-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 221, 207, 0.55));
}

.service-detail-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.service-detail-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 212, 200, 0.85);
  color: var(--ink);
  line-height: 1.55;
}

.service-detail-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(176, 103, 58, 0.12);
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.78rem;
}

.project-detail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(236, 221, 207, 0.35));
}

.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.project-detail-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.85rem;
  border: 1px solid rgba(176, 103, 58, 0.14);
  box-shadow: var(--shadow);
  background: rgba(236, 221, 207, 0.45);
}

.project-detail-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-detail-category-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(20, 14, 10, 0.12);
}

.project-detail-intro {
  display: grid;
  gap: 0.85rem;
}

.project-detail-intro .project-detail-eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-detail-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--ink);
}

.project-detail-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 38rem;
}

.project-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.project-detail-back-link:hover {
  color: var(--accent-dark);
}

.project-detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.project-detail-main {
  display: grid;
  gap: 1.5rem;
}

.project-detail-panel h2,
.project-detail-meta-panel h2,
.project-detail-materials-panel h2 {
  margin-top: 0;
}

.project-detail-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  white-space: pre-line;
}

.project-detail-aside {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.project-detail-aside-title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.project-detail-meta-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.project-detail-meta-item {
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 212, 200, 0.85);
}

.project-detail-meta-item dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-detail-meta-item dt i {
  color: var(--accent);
  font-size: 0.9rem;
}

.project-detail-meta-item dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.project-detail-meta-panel,
.project-detail-materials-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 221, 207, 0.55));
}

.project-detail-materials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.project-detail-materials li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 212, 200, 0.85);
  color: var(--ink);
  line-height: 1.55;
}

.project-detail-material-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(176, 103, 58, 0.12);
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.78rem;
}

.project-detail .detail-panel p,
.project-detail .project-detail-copy,
.project-detail .project-detail-lead {
  color: var(--muted);
}

.product-detail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(236, 221, 207, 0.35));
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.product-detail-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.85rem;
  border: 1px solid rgba(176, 103, 58, 0.14);
  box-shadow: var(--shadow);
  background: rgba(236, 221, 207, 0.45);
}

.product-detail-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail-gallery-strip {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.product-detail-gallery-thumb {
  display: inline-flex;
  padding: 0;
  border: 1px solid rgba(176, 103, 58, 0.18);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-detail-gallery-thumb img {
  display: block;
  width: 86px;
  height: 66px;
  object-fit: cover;
}

.product-detail-gallery-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 14, 10, 0.12);
}

.product-detail-gallery-thumb.is-active {
  border-color: rgba(176, 103, 58, 0.42);
  box-shadow: 0 12px 28px rgba(176, 103, 58, 0.18);
}

.product-detail-category-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(20, 14, 10, 0.12);
}

.product-detail-custom-badge {
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(176, 103, 58, 0.28);
}

.product-detail-intro {
  display: grid;
  gap: 0.85rem;
}

.product-detail-intro .product-detail-eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-detail-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--ink);
}

.product-detail-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 38rem;
}

.product-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.product-detail-back-link:hover {
  color: var(--accent-dark);
}

.product-detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.product-detail-main {
  display: grid;
  gap: 1.5rem;
}

.product-detail-panel h2,
.product-detail-specs-panel h2,
.product-detail-cta-panel h2 {
  margin-top: 0;
}

.product-detail-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  white-space: pre-line;
}

.product-detail-aside {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.product-detail-aside-title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.product-detail-spec-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.product-detail-spec-item {
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 212, 200, 0.85);
}

.product-detail-spec-item dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-spec-item dt i {
  color: var(--accent);
  font-size: 0.9rem;
}

.product-detail-spec-item dd {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  white-space: pre-line;
}

.product-detail-specs-panel,
.product-detail-cta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 221, 207, 0.55));
}

.product-detail-cta-copy {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.product-detail-quote-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  border: none;
  box-shadow: 0 12px 25px rgba(176, 103, 58, 0.24);
}

.product-detail .detail-panel p,
.product-detail .product-detail-copy,
.product-detail .product-detail-lead,
.product-detail .product-detail-cta-copy {
  color: var(--muted);
}

.services-listing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(236, 221, 207, 0.35));
}

.services-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.service-listing-card {
  border-radius: 1.75rem;
  background: var(--surface-strong);
  border: 1px solid rgba(223, 212, 200, 0.85);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-listing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 103, 58, 0.28);
  box-shadow: 0 22px 44px rgba(20, 14, 10, 0.12);
}

.service-listing-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-listing-card-media {
  position: relative;
  overflow: hidden;
}

.service-listing-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-listing-card:hover .service-listing-card-media img {
  transform: scale(1.04);
}

.service-listing-card-shade {
  position: absolute;
  inset: 0;
  margin: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.04), rgba(20, 14, 10, 0.42));
}

.service-listing-card-icon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(20, 14, 10, 0.14);
  font-size: 1.2rem;
}

.service-listing-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  padding: 1.45rem 1.5rem 1.55rem;
}

.service-listing-card-body h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.08;
  color: var(--ink);
}

.service-listing-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-listing-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.service-listing-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-listing-highlights i {
  margin-top: 0.18rem;
  color: var(--accent);
  font-size: 0.72rem;
}

.service-listing-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.35rem;
  color: var(--accent);
  font-weight: 700;
}

.service-listing-card-cta i {
  transition: transform 0.2s ease;
}

.service-listing-card:hover .service-listing-card-cta i {
  transform: translateX(4px);
}

.detail-meta strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-page-grid {
  align-items: start;
}

.contact-page-lead,
.contact-page .contact-form-card-desc,
.contact-page .form-help {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-page-lead {
  margin: 0 0 1.75rem;
}

.contact-page-aside-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(236, 221, 207, 0.55), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(176, 103, 58, 0.14);
  border-radius: 1.85rem;
  box-shadow: var(--shadow);
}

.contact-page-aside-shell::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 103, 58, 0.12), transparent 68%);
  pointer-events: none;
}

.contact-page-aside-shell > * {
  position: relative;
  z-index: 1;
}

.contact-page-channels {
  margin-top: 0.25rem;
}

.contact-page-channel-cards {
  width: 100%;
  grid-template-columns: 1fr;
}

.contact-chip--email {
  border-left-color: rgba(96, 125, 159, 0.55);
}

.contact-chip--email .contact-chip-icon {
  background: rgba(96, 125, 159, 0.12);
  color: #5a7a9a;
}

.contact-chip--email:hover,
.contact-chip--email:focus-visible {
  border-color: rgba(96, 125, 159, 0.38);
  box-shadow: 0 18px 40px rgba(96, 125, 159, 0.14);
}

.contact-chip--email:hover .contact-chip-arrow,
.contact-chip--email:focus-visible .contact-chip-arrow {
  color: #5a7a9a;
  transform: translateX(4px);
}

.contact-page-forms {
  display: grid;
  gap: 1.5rem;
}

.contact-form-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-form-card-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.85rem;
}

.contact-form-card-desc {
  margin: 0;
}

.contact-form-card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(176, 103, 58, 0.12);
  color: var(--accent);
}

.contact-form-card-icon .contact-svg-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-form-card-icon--quote {
  background: rgba(47, 125, 98, 0.12);
  color: var(--success);
}

.contact-form-card form .btn {
  margin-top: 0.35rem;
}

.quote-product-context {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(47, 125, 98, 0.22);
  background: rgba(47, 125, 98, 0.08);
}

.quote-product-context-label {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
}

.quote-product-context-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.quote-product-context-meta {
  margin: 0.2rem 0 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-product-context-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.form-hint {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-quote-teaser {
  padding: 2rem;
  background: var(--surface-strong);
  border: 1px solid rgba(223, 212, 200, 0.7);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-quote-teaser .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.contact-quote-teaser .btn .contact-svg-icon--arrow {
  width: 0.95rem;
  height: 0.95rem;
}

.contact-page-back-link {
  margin-top: 1.25rem;
}

.stacked-card {
  margin-top: 1rem;
}

.alert-card {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  background: rgba(47, 125, 98, 0.12);
  border: 1px solid rgba(47, 125, 98, 0.22);
  color: #1f5140;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-control {
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  min-height: 52px;
  background: #fff;
}

textarea.form-control {
  min-height: 140px;
}

.text-danger {
  font-size: 0.85rem;
}

.validation-summary-errors ul {
  margin: 0;
  padding-left: 1rem;
}

.status-page {
  padding: 8rem 0;
  text-align: center;
}

.status-page h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
}

@media (max-width: 1080px) {
  .hero-services-grid,
  .projects-grid,
  .process-grid,
  .listing-grid,
  .services-listing-grid,
  .principles-list,
  .detail-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expertise-grid,
  .about-grid,
  .about-teaser-layout,
  .contact-page-grid,
  .detail-body-grid,
  .service-detail-hero,
  .service-detail-content-grid,
  .project-detail-hero,
  .project-detail-content-grid,
  .product-detail-hero,
  .product-detail-content-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-aside,
  .product-detail-aside {
    position: static;
  }

  .site-header-shell,
  .hero-nav,
  .contact-strip-shell,
  .site-footer-grid,
  .section-heading.split {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-strip-actions {
    width: 100%;
  }

  .contact-page-channel-cards {
    grid-template-columns: 1fr;
  }

  .site-nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.4rem, 1200px);
  }

  .hero-services-grid,
  .projects-grid,
  .process-grid,
  .listing-grid,
  .services-listing-grid,
  .principles-list,
  .detail-meta,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-nav-links,
  .site-header-actions,
  .hero-actions,
  .stats-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-strip-cards {
    grid-template-columns: 1fr;
  }

  .btn,
  .contact-chip,
  .site-header-actions form,
  .site-header-actions a {
    width: 100%;
  }
}

/* ================================================================
   HERO FULL-SCREEN BANNER  (index sayfası yeni tasarım)
   ================================================================ */

/* ---- Logo image ---- */
.brand-logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.brand-logo-link:hover {
  opacity: 0.88;
}

.site-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  height: 60px;
  width: 60px;
  margin-bottom: 0.75rem;
}

.hero-logo {
  height: 64px;
  width: 64px;
}

/* ---- Page banner (iç sayfalar ortak başlık alanı) ---- */
.page-banner {
  position: relative;
  width: 100%;
  min-height: 46vh;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a100a 0%, #2c1a10 60%, #1a100a 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-banner-bottom-grad {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.page-banner-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}

.page-banner-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  margin: 0.5rem 0 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.page-banner-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0.85rem 0 0;
  max-width: 600px;
}

@media (max-width: 720px) {
  .page-banner {
    min-height: 320px;
  }

  .page-banner-body {
    padding-bottom: 2rem;
  }
}

.hero-full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark gradient: left heavy → transparent right */
.hero-bg-grad-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.40) 55%,
    transparent 100%
  );
}

/* Dark gradient: top → transparent */
.hero-bg-grad-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent);
}

/* ---- Navigation inside hero ---- */
.hero-nav-overlay {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 2rem 0;
}

.hero-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-brand {
  display: flex;
  flex-direction: column;
}

.hero-brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.hero-brand-mark:hover {
  color: #fff;
  text-decoration: none;
}

.hero-brand-accent {
  color: var(--accent);
}

.hero-brand-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0.25rem 0 0;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.hero-nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
  padding-bottom: 2px;
}

.hero-nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: -3px;
  left: 0;
  background: #fff;
  transition: width 0.3s ease;
}

.hero-nav-link:hover {
  color: #fff;
  text-decoration: none;
}

.hero-nav-link:hover::after {
  width: 100%;
}

.hero-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.hero-lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.btn-hero-cta {
  background: var(--accent);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.4rem;
  border-radius: 0.35rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s;
}

.btn-hero-cta:hover {
  background: #9a5530;
  color: #fff;
  text-decoration: none;
}

/* Hamburger — shown only on mobile */
.hero-mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

.hero-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
}

.hero-mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.hero-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(10, 8, 6, 0.58);
  cursor: pointer;
}

.hero-mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(88vw, 320px);
  height: 100%;
  padding: 1.25rem 1.1rem 1.5rem;
  background: linear-gradient(180deg, rgba(24, 20, 17, 0.98), rgba(38, 31, 26, 0.98));
  border-left: 1px solid rgba(243, 199, 168, 0.16);
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  outline: none;
}

.hero-mobile-menu.is-open .hero-mobile-menu-panel {
  transform: translateX(0);
}

.hero-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-mobile-menu-title {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.45rem;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hero-mobile-menu-links {
  display: grid;
  gap: 0.35rem;
  overflow-y: auto;
}

.hero-mobile-menu-link {
  display: block;
  padding: 0.8rem 0.65rem;
  border-radius: 0.55rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-mobile-menu-link:hover,
.hero-mobile-menu-link:focus-visible {
  color: #fff;
  background: rgba(243, 199, 168, 0.12);
  outline: none;
}

.hero-mobile-menu-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.hero-mobile-menu-lang {
  width: 100%;
}

.hero-mobile-menu-cta {
  width: 100%;
  justify-content: center;
}

body.hero-mobile-nav-open {
  overflow: hidden;
}

.hero-desktop-only {
  display: flex;
}

.hero-mobile-only {
  display: none;
}

/* ---- Main hero content ---- */
.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.hero-headline-accent {
  color: var(--accent);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 2.2rem;
  max-width: 560px;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s;
  border: 2px solid transparent;
}

.btn-whatsapp:hover {
  background: #1db454;
  color: #fff;
  text-decoration: none;
}

/* Phone / Call button */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s;
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  text-decoration: none;
}

/* ---- Glass service bar at the bottom ---- */
.hero-bar-wrap {
  position: relative;
  z-index: 20;
  padding-bottom: 2rem;
}

.hero-bar-intro {
  width: min(760px, 100%);
  margin: 0 0 1rem;
}

.hero-bar-heading {
  margin: 0 0 0.6rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.hero-bar-copy,
.section-copy,
.light-text-copy {
  margin: 0;
  line-height: 1.75;
}

.hero-bar-copy,
.light-text-copy {
  color: rgba(255, 255, 255, 0.82);
}

.section-copy {
  color: var(--muted);
  max-width: 700px;
  margin-top: 0.9rem;
}

.hero-glass-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

.hero-bar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  cursor: default;
  transition: background 0.25s;
}

.hero-bar-card:last-child {
  border-right: none;
}

.hero-bar-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-bar-icon {
  font-size: 1.45rem;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.hero-bar-title {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.hero-bar-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* ---- Responsive: hero ---- */
@media (max-width: 1080px) {
  .hero-nav-links.hero-desktop-only {
    gap: 1.2rem;
  }

  .hero-glass-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-bar-card:nth-child(3) {
    border-right: none;
  }

  .hero-bar-card:nth-child(3) ~ .hero-bar-card {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
}

@media (max-width: 720px) {
  .hero-desktop-only {
    display: none !important;
  }

  .hero-mobile-only {
    display: block !important;
  }

  .hero-mobile-menu-btn {
    display: block;
  }

  .hero-glass-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-bar-card:nth-child(2) {
    border-right: none;
  }

  .hero-bar-card:nth-child(2) ~ .hero-bar-card {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-bar-card:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-body {
    padding-top: 1rem;
    max-width: 100%;
  }

  .hero-bar-wrap {
    padding-bottom: 1.2rem;
  }

  .hero-cta-row .btn-whatsapp,
  .hero-cta-row .btn-call {
    width: 100%;
    justify-content: center;
  }
}