/* =========================================================
   Vista Perde & İç Mimarlık - Bodrum
   Modern, premium, Bodrum esintili tasarım
   ========================================================= */

:root {
  /* Vista Marka Paleti — Linen, Espresso, Clay, Bronze, Honey, Sand */
  --linen: #EFE7D4;
  --espresso: #3A2E22;
  --clay: #9A7A56;
  --bronze: #7A5A3E;
  --honey: #B89968;
  --sand: #D4B896;

  --bg: #EFE7D4;
  --bg-soft: #E5DBC4;
  --bg-card: #F7F1E0;
  --ink: #3A2E22;
  --ink-soft: #5C4A3A;
  --ink-mute: #8B7B68;
  --accent: #9A7A56;
  --accent-dark: #7A5A3E;
  --line: #DCCFB7;
  --blue: #7A5A3E;
  --blue-dark: #3A2E22;
  --whatsapp: #25D366;
  --whatsapp-dark: #1FA855;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(58, 46, 34, 0.06);
  --shadow-md: 0 8px 24px rgba(58, 46, 34, 0.10);
  --shadow-lg: 0 20px 60px rgba(58, 46, 34, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1240px;
  --header-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Default SVG dimensions — prevents SVGs without width/height attributes from rendering at browser default 300x150 */
svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
svg:not([width]):not([height]) { width: 1em; height: 1em; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { color: var(--ink-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section {
  padding: clamp(60px, 9vw, 120px) 0;
}

.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.75); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.08rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-wa:hover { background: var(--whatsapp-dark); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text > span:first-child {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.22em;
  color: var(--espresso);
  font-weight: 500;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-top: 5px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: nowrap;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
}
.phone-link svg { color: var(--accent-dark); flex-shrink: 0; }
.phone-link:hover { color: var(--accent-dark); }
.header-cta .btn { white-space: nowrap; padding: 12px 22px; font-size: 0.88rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  place-items: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154, 122, 86, 0.18), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 90, 62, 0.12), transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
}
.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-lead {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .img-fill {
  background: linear-gradient(135deg, #D4B896 0%, #B89968 35%, #9A7A56 65%, #7A5A3E 100%);
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-visual .img-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(30, 42, 56, 0.4) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 28px, rgba(255,255,255,0.08) 28px, rgba(255,255,255,0.08) 30px);
  z-index: 1;
  pointer-events: none;
}
.hero-visual .img-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.25), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.hero-visual .img-fill.has-photo::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 48%, rgba(30, 42, 56, 0.38) 100%);
}
.hero-visual .img-fill.has-photo::after {
  background: radial-gradient(ellipse at 20% 18%, rgba(255,255,255,0.18), transparent 42%);
}
.visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.hero-badge .icon {
  width: 48px;
  height: 48px;
  background: var(--bronze);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--linen);
  flex-shrink: 0;
}
.hero-badge strong { display: block; font-size: 0.95rem; }
.hero-badge span { font-size: 0.83rem; color: var(--ink-mute); }

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--ink);
  padding: 24px 0;
  color: var(--white);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ===== Service Cards ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { height: 100%; }
.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .icon-wrap {
  background: var(--accent);
  color: var(--white);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; }

/* ===== Perde / Curtain Cards ===== */
.curtain-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.curtain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.curtain-card .visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.curtain-card .visual.is-photo {
  background: #DCCFB7;
}
.curtain-card .visual.is-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.14));
  z-index: 1;
}
.curtain-card .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
}
.curtain-card .visual .label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
}
.curtain-card .body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.curtain-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.curtain-card p {
  font-size: 0.93rem;
  flex: 1;
  margin-bottom: 18px;
}
.curtain-card .features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.curtain-card .features span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--ink-soft);
}
.curtain-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
}

/* Texture backgrounds for curtain visuals */
.tex-spile { background: linear-gradient(135deg, #E5DBC4, #D4B896); position: relative; }
.tex-spile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(95deg, transparent 0, transparent 30px, rgba(255,255,255,0.18) 30px, rgba(255,255,255,0.18) 32px, transparent 32px, transparent 56px, rgba(0,0,0,0.06) 56px, rgba(0,0,0,0.06) 58px);
}
.tex-fon { background: linear-gradient(135deg, #B89968, #7A5A3E); }
.tex-fon::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 40px, rgba(255,255,255,0.12) 40px 42px, transparent 42px 80px, rgba(0,0,0,0.08) 80px 82px);
}
.tex-tul { background: linear-gradient(180deg, #F7F1E0, #E5DBC4); }
.tex-tul::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,0.04) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(0,0,0,0.04) 3px 4px);
}
.tex-zebra { background: linear-gradient(135deg, #3A2E22, #7A5A3E); }
.tex-zebra::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(239, 231, 212, 0.92) 0 14px, transparent 14px 28px);
}
.tex-stor { background: linear-gradient(180deg, #D4B896, #9A7A56); }
.tex-stor::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 8px, rgba(0,0,0,0.06) 8px 9px);
}
.tex-plise { background: linear-gradient(135deg, #E5DBC4, #B89968); }
.tex-plise::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.08) 0 1px, transparent 1px 12px);
}
.tex-dikey { background: linear-gradient(180deg, #F7F1E0, #9A7A56); }
.tex-dikey::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 24px, rgba(0,0,0,0.08) 24px 26px, transparent 26px 50px);
}
.tex-jaluzi { background: linear-gradient(135deg, #7A5A3E, #3A2E22); }
.tex-jaluzi::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 10px, rgba(0,0,0,0.25) 10px 14px);
}
.tex-rustik { background: linear-gradient(135deg, #B89968, #3A2E22); }
.tex-rustik::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(95deg, transparent 0 32px, rgba(255,255,255,0.12) 32px 34px),
    radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.2), transparent 60%);
}
.tex-motorlu { background: linear-gradient(135deg, #3A2E22, #5C4A3A); }
.tex-motorlu::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(95deg, transparent 0 28px, rgba(212, 184, 150, 0.2) 28px 30px),
    radial-gradient(circle at 80% 30%, rgba(184, 153, 104, 0.55), transparent 35%);
}
.tex-perdelik { background: linear-gradient(135deg, #F7F1E0, #D4B896); }
.tex-perdelik::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(154, 122, 86, 0.18) 6px 7px);
}
.tex-yacht { background: linear-gradient(180deg, #9A7A56, #3A2E22); }
.tex-yacht::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(239, 231, 212, 0.25) 30px 32px),
    radial-gradient(ellipse at 50% 80%, rgba(212, 184, 150, 0.2), transparent 50%);
}

/* ===== About / Story ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #7A5A3E 0%, #3A2E22 55%, #B89968 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.2), transparent 50%),
    repeating-linear-gradient(95deg, transparent 0 40px, rgba(255,255,255,0.06) 40px 42px);
  z-index: 1;
  pointer-events: none;
}
.about-visual.has-photo {
  background: #D4B896;
}
.about-visual.has-photo::before {
  background:
    linear-gradient(180deg, rgba(16, 12, 10, 0.08) 0%, rgba(16, 12, 10, 0.22) 100%),
    radial-gradient(ellipse at 24% 18%, rgba(255,255,255,0.18), transparent 42%);
}
.about-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  z-index: 2;
}
.about-stats div {
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 12px;
  border-radius: 10px;
  text-align: center;
}
.about-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.about-stats span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-top: 4px;
  display: block;
}

.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; font-size: 1.02rem; }
.about-content .signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.about-content .signature strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  display: block;
  color: var(--ink);
}
.about-content .signature span {
  font-size: 0.88rem;
  color: var(--ink-mute);
}

/* ===== Process / Steps ===== */
.process {
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step .num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.process-step p { font-size: 0.93rem; }

/* ===== Region / Bodrum Areas ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.region-pill {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.region-pill:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-3px);
}
.region-pill strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.region-pill span {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.region-pill:hover span { color: rgba(255,255,255,0.7); }

/* ===== Testimonial / Quote ===== */
.testimonial {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  margin: 32px 0;
  position: relative;
  padding: 0 40px;
}
.section-dark .testimonial blockquote { color: rgba(255, 255, 255, 0.95); }
.section-dark .testimonial cite { color: var(--white); }
.section-dark .testimonial cite span { color: rgba(255, 255, 255, 0.65); }
.testimonial blockquote::before,
.testimonial blockquote::after {
  content: "\201C";
  font-size: 3rem;
  color: var(--accent);
  font-family: var(--serif);
  position: absolute;
  line-height: 1;
}
.testimonial blockquote::before { left: 0; top: -10px; }
.testimonial blockquote::after { content: "\201D"; right: 0; bottom: -30px; }
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* ===== CTA Section ===== */
.cta-band {
  background: linear-gradient(135deg, #3A2E22 0%, #5C4A3A 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.28), transparent 60%);
  border-radius: 50%;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 184, 150, 0.15), transparent 65%);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.cta-inner h2 { color: var(--white); margin-bottom: 20px; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 32px; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.78rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.contact-item a:hover { color: var(--accent-dark); }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  transition: all var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-card .btn { width: 100%; justify-content: center; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linen);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  background-image: url("../img/logo.png");
}
.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.93rem; margin-bottom: 20px; }
.footer-col li { color: rgba(255,255,255,0.65); font-size: 0.93rem; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--ink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Sticky Action Buttons (WA + Phone) ===== */
.sticky-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
  pointer-events: none;
}
.sticky-actions a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(58, 46, 34, 0.25);
  position: relative;
  transition: transform var(--transition);
  pointer-events: auto;
}
.sticky-actions a:hover { transform: scale(1.08); }
.sticky-actions .wa { background: var(--whatsapp); }
.sticky-actions .ph { background: var(--ink); }
.sticky-actions .wa::after,
.sticky-actions .ph::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.sticky-actions a:hover::after { opacity: 1; }
.sticky-actions .wa {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ===== Mobile Bottom Bar ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  z-index: 95;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.mobile-bar svg { width: 22px !important; height: 22px !important; flex-shrink: 0; }
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
}
.mobile-bar a.primary { background: var(--whatsapp); color: var(--white); }
.mobile-bar a.call { background: var(--ink); color: var(--white); }
.mobile-bar a svg { width: 22px; height: 22px; }

/* ===== Mobile Nav Overlay ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: calc(var(--header-h) + 24px) 28px 28px;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.7rem;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav a::after {
  content: "›";
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
}
.mobile-nav .cta-area {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  gap: 12px;
}
.mobile-nav .cta-area .btn { flex: 1; justify-content: center; }
.mobile-nav .cta-area .btn::after { content: none; }

/* Hamburger → X morph */
.menu-toggle .ico-bar1,
.menu-toggle .ico-bar2 {
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
body.menu-open .menu-toggle .ico-bar1 { transform: translateY(4px) rotate(45deg); }
body.menu-open .menu-toggle .ico-bar2 { transform: translateY(-4px) rotate(-45deg); }

/* ===== Inner Page Hero ===== */
.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 166, 107, 0.12), transparent 70%);
  border-radius: 50%;
}
.page-hero-inner {
  position: relative;
  max-width: 760px;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent-dark); }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.1rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-q .ico {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a div { padding: 0 28px 24px; color: var(--ink-soft); }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-item:nth-child(4n+1) { aspect-ratio: 1; }
.gallery-item:nth-child(7n) { aspect-ratio: 3/4; }
.gallery-item.is-photo {
  background: #D4B896;
}
.gallery-item.is-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,10,8,0.02), rgba(12,10,8,0.2));
  z-index: 1;
  pointer-events: none;
}
.gallery-item .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  z-index: 2;
}
.gallery-item .meta small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  display: block;
  margin-bottom: 6px;
}
.gallery-item .meta strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-shot {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
}
.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
  font-size: 0.9rem;
  z-index: 2;
}
.project-shot strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
}

/* ===== Detailed feature list ===== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 24px 0;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 520px; margin: 0 auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .project-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Hide nav + phone link on smaller desktops; show hamburger */
@media (max-width: 1100px) {
  .nav { display: none; }
  .header-cta .phone-link { display: none; }
  .menu-toggle { display: grid; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  body { font-size: 15px; }
  h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }
  h3 { font-size: 1.25rem; }
  .container { padding: 0 18px; }
  .site-footer { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .nav, .header-cta .phone-link, .header-cta .btn { display: none; }
  .menu-toggle { display: grid; }
  .mobile-bar { display: flex; z-index: 90; padding-bottom: env(safe-area-inset-bottom, 0px); }
  .header-cta { gap: 0; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head p { font-size: 1rem; }
  /* Hero */
  .hero { padding-top: calc(var(--header-h) + 28px); padding-bottom: 48px; }
  .hero-inner { gap: 32px; }
  .hero-content h1 { margin-bottom: 18px; }
  .hero-lead { font-size: 1rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 32px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 14px 22px; }
  .hero-meta { gap: 20px; }
  .hero-meta-item .num { font-size: 1.6rem; }
  .hero-meta-item .lbl { font-size: 0.75rem; }
  .hero-badge { padding: 14px 16px; gap: 12px; bottom: 16px; left: 16px; right: 16px; }
  .hero-badge .icon { width: 40px; height: 40px; }
  .hero-badge strong { font-size: 0.88rem; }
  .hero-badge span { font-size: 0.78rem; }
  /* Page hero (inner pages) */
  .page-hero { padding-top: calc(var(--header-h) + 36px); padding-bottom: 48px; }
  .page-hero p { font-size: 1rem; }
  /* Cards / grids */
  .grid-3, .grid-2, .footer-grid, .grid-4, .process-grid, .gallery-grid, .regions-grid, .project-showcase-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 { gap: 16px; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .region-pill { padding: 16px 14px; }
  .service-card { padding: 26px 22px; }
  .curtain-card .body { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .feature-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-grid { gap: 32px; padding-bottom: 40px; }
  .testimonial blockquote { padding: 0 20px; font-size: 1.25rem; line-height: 1.45; }
  .testimonial blockquote::before { font-size: 2.2rem; top: -8px; }
  .testimonial blockquote::after { font-size: 2.2rem; bottom: -22px; }
  .trust-strip-inner { gap: 18px; justify-content: flex-start; }
  .trust-item { font-size: 0.86rem; }
  .cta-actions { gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .about-grid { gap: 36px; }
  .about-stats { gap: 8px; }
  .about-stats div { padding: 12px 8px; }
  .about-stats strong { font-size: 1.3rem; }
  .about-stats span { font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .brand { gap: 8px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-text > span:first-child { font-size: 1.05rem; letter-spacing: 0.18em; }
  .brand small { font-size: 0.5rem; letter-spacing: 0.2em; }
  .menu-toggle { width: 42px; height: 42px; }
  .menu-toggle svg { width: 20px; height: 20px; }
  .mobile-nav { padding: calc(var(--header-h) + 16px) 22px 22px; }
  .mobile-nav a { font-size: 1.45rem; padding: 16px 4px; }
  .footer-brand { font-size: 1.15rem; letter-spacing: 0.14em; gap: 10px; }
  .footer-brand .brand-mark { width: 32px; height: 32px; flex: 0 0 32px; }
  .footer-social { flex-wrap: wrap; }
  .hero-content h1 { font-size: clamp(1.85rem, 9vw, 2.3rem); }
  .hero-meta-item .num { font-size: 1.5rem; }
  .hero-badge { padding: 12px 14px; }
  .hero-badge .icon { width: 36px; height: 36px; }
  .section-head p { font-size: 0.95rem; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .brand-text > span:first-child { font-size: 0.95rem; }
  .brand small { font-size: 0.46rem; }
  .regions-grid { grid-template-columns: 1fr; }
}

/* Force sticky actions always to bottom-right, even when other fixed UI is present */
.sticky-actions { right: 24px !important; left: auto !important; }

/* Print fallback */
@media print {
  .sticky-actions, .mobile-bar, .site-header { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
