:root {
  --wine: #551326;
  --wine-dark: #3e101d;
  --wine-deep: #181012;
  --rose: #b68a54;
  --coral: #d8c2a2;
  --cream: #f1ede4;
  --cream-deep: #e5ded2;
  --paper: #faf8f2;
  --ink: #1c1718;
  --ink-soft: #6b6263;
  --line: rgba(28, 23, 24, 0.18);
  --white-line: rgba(255, 255, 255, 0.2);
  --white: #fffdf9;
  --green: #187d55;
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
  --display: "Cormorant Garamond", Garamond, Georgia, serif;
  --shell: min(1280px, calc(100vw - 64px));
  --header-height: 88px;
  --radius: 2px;
  --ease: cubic-bezier(.22, .8, .26, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.home-redesign {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.home-redesign img { display: block; max-width: 100%; }
body.home-redesign a { color: inherit; text-decoration: none; }
body.home-redesign button,
body.home-redesign input,
body.home-redesign select,
body.home-redesign textarea { font: inherit; }
body.home-redesign button { color: inherit; }
body.home-redesign ::selection { color: var(--white); background: var(--wine); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white) !important;
  background: var(--wine);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.shell { width: var(--shell); margin-inline: auto; }
.section-space { padding-block: clamp(105px, 11vw, 158px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: height .4s var(--ease), color .35s ease, background-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(250, 248, 242, .95);
  box-shadow: 0 10px 30px rgba(58, 31, 36, .07);
  border-color: rgba(39, 25, 29, .1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--rose);
  background: var(--wine-deep);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px currentColor;
  line-height: 1;
}
.brand-mark svg { width: 28px; height: 28px; overflow: visible; }
.brand-mark path { stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark::before {
  content: "K";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--white);
  font: 600 12px/1 var(--serif);
  transform: translate(-50%, -51%);
}
.brand-mark::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: -1px;
  right: 0;
  background: currentColor;
  border: 2px solid var(--wine-deep);
  transform: rotate(45deg);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -.025em; }
.brand-copy small { margin-top: 5px; font-size: 9px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding-block: 13px;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transition: right .3s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; flex-direction: column; line-height: 1.25; text-align: right; }
.header-phone span { font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .66; }
.header-phone strong { margin-top: 3px; font-size: 13px; }
.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
  cursor: pointer;
  transition: transform .25s var(--ease), color .25s ease, background-color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button i { font-size: 12px; transition: transform .25s ease; }
.button:hover i { transform: translateX(3px); }
.button--small { min-height: 46px; padding-inline: 20px; }
.button--wine { color: var(--white) !important; background: var(--wine); }
.site-header:not(.is-scrolled) .button--wine { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .25); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.button--cream { color: var(--wine-deep) !important; background: var(--cream); }
.button--outline-light { color: var(--white) !important; border-color: rgba(255, 255, 255, .35); }
.button--outline-light:hover { color: var(--wine-deep) !important; background: var(--cream); border-color: var(--cream); }
.button--whatsapp { color: var(--white) !important; background: var(--green); }
.button--full { width: 100%; }
.menu-button {
  width: 46px;
  aspect-ratio: 1;
  padding: 0;
  display: none;
  place-items: center;
  position: relative;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
}
.menu-button span { position: absolute; width: 17px; height: 1px; background: currentColor; transition: transform .3s ease, top .3s ease; }
.menu-button span:first-child { transform: translateY(-3px); }
.menu-button span:last-child { transform: translateY(3px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 28px max(24px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: var(--wine-deep);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-14px);
  transition: .3s var(--ease);
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
.mobile-menu nav a { padding: 16px 0; display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--white-line); font-family: var(--serif); font-size: clamp(28px, 8vw, 44px); }
.mobile-menu nav a span { font-family: var(--sans); font-size: 11px; opacity: .5; }
.mobile-menu__contact { margin-top: 36px; }
.mobile-menu__contact p { margin: 0 0 4px; color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.mobile-menu__contact a { color: var(--coral); font-weight: 700; }

.hero { min-height: 730px; height: 100svh; position: relative; color: var(--white); overflow: hidden; background: var(--wine-deep); }
.hero::before { content: ""; position: absolute; z-index: 4; inset: calc(var(--header-height) + 18px) 22px 22px; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity .9s ease, visibility .9s ease; }
.hero-slide.is-active { visibility: visible; opacity: 1; z-index: 1; }
.hero-slide > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.74) contrast(1.05); transform: scale(1.015); transition: transform 9s linear; }
.hero-slide.is-active > img { transform: scale(1.045); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18, 10, 12, .9) 0%, rgba(24, 12, 16, .62) 47%, rgba(20, 10, 13, .16) 78%), linear-gradient(0deg, rgba(15, 8, 10, .68) 0%, transparent 43%); }
.hero-content { height: 100%; padding-top: clamp(155px, 19vh, 215px); position: relative; z-index: 2; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 11px; color: var(--wine); font-size: 11px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.eyebrow--light { color: rgba(255,255,255,.76); }
.hero h1, .hero h2 {
  max-width: 890px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 6.8vw, 102px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .92;
}
.hero h1 em, .hero h2 em, .intro h2 em, .services-head h2 em, .section-heading h2 em, .process-intro h2 em, .quote-copy h2 em, .faq-title h2 em, .footer-statement em, .why h2 em {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}
.hero h1 em, .hero h2 em { color: var(--coral); }
.hero-lead { max-width: 610px; margin: 32px 0 0; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-block: 7px; border-bottom: 1px solid currentColor; color: var(--wine) !important; font-size: 13px; font-weight: 700; }
.text-link i { font-size: 11px; transition: transform .25s ease; }
.text-link:hover i { transform: translateX(3px); }
.text-link--light { color: var(--white) !important; }
.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 23px;
}
.hero-count { display: flex; align-items: center; gap: 10px; font-family: var(--display); }
.hero-count strong { font-size: 14px; }
.hero-count small { font-size: 10px; opacity: .6; }
.hero-count > span { width: 40px; height: 1px; background: rgba(255,255,255,.4); }
.hero-dots { display: flex; align-items: center; gap: 6px; }
.hero-dots button { width: 52px; height: 24px; padding: 11px 0; background: none; border: 0; cursor: pointer; }
.hero-dots button span { display: block; width: 100%; height: 2px; position: relative; overflow: hidden; background: rgba(255,255,255,.3); }
.hero-dots button span::after { content: ""; position: absolute; inset: 0 100% 0 0; background: var(--white); }
.hero-dots button.is-active span::after { animation: slideProgress 6s linear forwards; }
.hero-arrows { display: flex; gap: 7px; margin-left: auto; }
.hero-arrows button, .rail-arrows button {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.hero-arrows button:hover, .rail-arrows button:hover { color: var(--wine-deep); background: var(--cream); }
.hero-autoplay {
  min-height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  background: rgba(16, 12, 14, .2);
  border: 1px solid rgba(255,255,255,.3);
  font: 700 9px/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.hero-autoplay:hover { color: var(--wine-deep); background: var(--cream); }
.hero.is-paused .hero-dots button.is-active span::after { animation-play-state: paused; }
.hero-scroll { position: absolute; z-index: 6; right: 32px; bottom: 46px; display: flex; align-items: center; gap: 14px; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll i { animation: bounceDown 1.8s infinite; }
@keyframes slideProgress { to { right: 0; } }
@keyframes bounceDown { 50% { transform: translateY(5px); } }

.marquee { color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-track { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: repeat(6, 1fr); animation: none; }
.marquee span { min-height: 78px; padding: 0 18px; display: flex; align-items: center; gap: 12px; border-left: 1px solid var(--line); font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.marquee span:last-child { border-right: 1px solid var(--line); }
.marquee small { color: var(--wine); font-family: var(--serif); font-size: 12px; letter-spacing: 0; }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 70px 11vw; }
.intro-heading h2, .services-head h2, .section-heading h2, .process-intro h2, .quote-copy h2, .faq-title h2, .why h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.03;
}
.intro-heading h2 em, .section-heading h2 em, .faq-title h2 em, .why h2 em { color: var(--wine); }
.intro-copy { padding-top: 45px; }
.intro-copy p { margin: 0; font-size: 19px; line-height: 1.65; }
.intro-copy p.muted { margin: 18px 0 28px; color: var(--ink-soft); font-size: 15px; }
.intro-stats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-stats > div { padding: 32px 0; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.intro-stats > div:not(:first-child) { padding-left: 42px; }
.intro-stats > div:last-child { border-right: 0; }
.intro-stats strong { font-family: var(--serif); font-size: 31px; font-weight: 500; }
.intro-stats span { margin-top: 4px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.services-section { color: var(--white); background: #151113; overflow: hidden; }
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.services-head h2 { color: var(--white); }
.services-head h2 em { color: var(--coral); }
.services-head__right { max-width: 400px; display: flex; align-items: flex-end; gap: 30px; }
.services-head__right p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.rail-arrows { flex: 0 0 auto; display: flex; gap: 8px; }
.service-rail {
  margin-top: 62px;
  padding: 0 max(32px, calc((100vw - 1280px) / 2)) 24px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.service-rail::-webkit-scrollbar { display: none; }
.service-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.service-card {
  width: clamp(300px, 30vw, 440px);
  aspect-ratio: .78;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: #170a0e;
}
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19,6,11,.94), rgba(21,7,12,.03) 68%); }
.service-card img { width: 100%; height: 100%; object-fit: cover; opacity: .77; transition: transform .65s var(--ease), opacity .5s ease; }
.service-card:hover img { transform: scale(1.045); opacity: .9; }
.service-number { position: absolute; z-index: 2; top: 25px; right: 25px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.service-card__body { position: absolute; z-index: 2; inset: auto 30px 31px; }
.service-card__body p { margin: 0 0 11px; color: var(--coral); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.service-card__body h3 { margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(30px, 2.7vw, 42px); font-weight: 500; line-height: 1.07; }
.service-card__body > span { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700; }
.service-card__body > span i { font-size: 10px; transition: transform .25s ease; }
.service-card:hover .service-card__body > span i { transform: translateX(4px); }
.services-all { margin-top: 42px; text-align: center; }

.projects { background: var(--paper); }
.section-heading { margin-bottom: 55px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.section-heading > p { max-width: 380px; margin: 0 0 10px; color: var(--ink-soft); }
.project-grid { display: grid; grid-template-columns: 1fr .76fr; gap: 22px; }
.project-card { min-height: 400px; position: relative; overflow: hidden; background: var(--cream-deep); }
.project-card--wide { min-height: 560px; }
.project-card--tall { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; position: absolute; object-fit: cover; transition: transform .75s var(--ease); }
.project-card:hover img { transform: scale(1.04); }
.project-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(0deg, rgba(22,8,13,.78), transparent); }
.project-card__overlay { position: absolute; z-index: 2; inset: auto 28px 27px; display: flex; align-items: flex-end; justify-content: space-between; color: var(--white); }
.project-card__overlay span { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.project-card__overlay h3 { margin: 4px 0 0; color: var(--white); font-family: var(--serif); font-size: 30px; font-weight: 500; }
.project-card__overlay p { margin: 8px 0 0; color: rgba(255,255,255,.76); font-size: 12px; letter-spacing: .01em; }
.project-card__overlay b { width: 43px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 12px; transition: color .25s ease, background .25s ease; }
.project-card:hover .project-card__overlay b { color: var(--wine-deep); background: var(--white); }

.reviews { background: var(--cream); }
.reviews .section-heading { align-items: flex-end; }
.reviews-score { min-width: 175px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 13px; }
.reviews-score strong { grid-row: span 2; color: var(--wine); font: 500 42px/.9 var(--serif); letter-spacing: -.045em; }
.reviews-score > span { display: flex; gap: 3px; color: var(--rose); font-size: 10px; }
.reviews-score small { color: var(--ink-soft); font-size: 11px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.review-note { min-height: 330px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.review-note:last-child { border-right: 0; }
.review-note__mark { height: 62px; color: var(--wine); font: 500 72px/.85 var(--serif); }
.review-note > p { margin: 30px 0 40px; font: 500 clamp(22px, 2vw, 29px)/1.25 var(--serif); letter-spacing: -.02em; }
.review-note footer { margin-top: auto; display: flex; flex-direction: column; }
.review-note footer strong { font-size: 13px; }
.review-note footer span { margin-top: 3px; color: var(--ink-soft); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.reviews-link { margin-top: 30px; display: flex; justify-content: flex-end; }

.process { color: var(--white); background: var(--wine-dark); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 11vw; }
.process-intro { align-self: start; position: sticky; top: 130px; }
.process-intro h2 { color: var(--white); font-size: clamp(42px, 4.5vw, 67px); }
.process-intro h2 em { color: var(--coral); }
.process-intro > p:not(.eyebrow) { max-width: 480px; margin: 26px 0 30px; color: rgba(255,255,255,.7); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--white-line); }
.process-list li { padding: 36px 0; display: grid; grid-template-columns: 70px 1fr; gap: 10px; border-bottom: 1px solid var(--white-line); }
.process-list li > span { padding-top: 6px; color: var(--coral); font-size: 11px; font-weight: 700; }
.process-list h3 { margin: 0 0 9px; color: var(--white); font-family: var(--serif); font-size: clamp(27px, 2.5vw, 37px); font-weight: 500; }
.process-list p { max-width: 480px; margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.why { background: var(--cream); }
.why .section-heading > p { align-self: flex-end; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.why-card { min-height: 350px; padding: 28px; position: relative; border-right: 1px solid var(--line); }
.why-card:last-child { border: 0; }
.why-card > span { position: absolute; top: 22px; right: 22px; color: var(--wine); font-size: 10px; font-weight: 700; }
.why-icon { width: auto; height: 28px; margin-bottom: 74px; display: flex; align-items: center; color: var(--wine); background: transparent; border-radius: 0; font-size: 19px; }
.why-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.quote-section { color: var(--white); background: #151113; }
.quote-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 9vw; align-items: center; }
.quote-copy h2 { color: var(--white); }
.quote-copy h2 em { color: var(--coral); }
.quote-copy > p:not(.eyebrow) { max-width: 500px; margin: 28px 0 36px; color: rgba(255,255,255,.66); }
.quote-contact { display: flex; flex-direction: column; gap: 14px; }
.quote-contact a { display: flex; align-items: center; gap: 14px; }
.quote-contact a > i { width: 42px; aspect-ratio: 1; display: grid; place-items: center; color: var(--coral); border: 1px solid var(--white-line); border-radius: 50%; }
.quote-contact span { display: flex; flex-direction: column; }
.quote-contact small { color: rgba(255,255,255,.48); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.quote-contact strong { font-size: 13px; }
.quote-form { padding: clamp(28px, 4vw, 50px); color: var(--ink); background: var(--paper); border: 1px solid #cfc5b7; border-radius: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label:not(.consent) { margin-bottom: 19px; display: flex; flex-direction: column; gap: 7px; }
.quote-form label > span { font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(39,25,29,.28);
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease;
}
.quote-form textarea { resize: vertical; min-height: 95px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--wine); }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9e9293; }
.consent { margin: 2px 0 20px; display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 11px; }
.consent input { width: 15px; margin-top: 4px; accent-color: var(--wine); }
.consent a { color: var(--wine) !important; text-decoration: underline !important; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin-top: 14px; padding: 12px 14px; color: var(--wine-dark); background: #eee7dc; border-left: 3px solid var(--wine); font-size: 12px; }
.form-status.is-success { color: #0f5f3e; background: #e1f0e8; border-color: #187d55; }
.form-status.is-warning { color: #6d4500; background: #f8edd3; border-color: #c7871d; }
.quote-form button[disabled] { cursor: wait; opacity: .72; transform: none; }
.form-note { margin: 12px 0 0; color: var(--ink-soft); font-size: 10px; text-align: center; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; }
.faq-title { align-self: start; position: sticky; top: 120px; }
.faq-title .text-link { margin-top: 35px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; padding: 28px 0; display: flex; justify-content: space-between; gap: 22px; color: var(--ink); background: none; border: 0; text-align: left; cursor: pointer; }
.accordion-item button span { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); }
.accordion-item button i { margin-top: 8px; color: var(--wine); font-size: 12px; transition: transform .25s ease; }
.accordion-item.is-open button i { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.accordion-panel p { max-width: 680px; margin: 0; padding: 0 50px 28px 0; color: var(--ink-soft); font-size: 14px; }
.accordion-item.is-open .accordion-panel { max-height: 180px; }

.instagram-strip { display: grid; grid-template-columns: .72fr 1.28fr; color: var(--white); background: var(--wine-dark); border-top: 1px solid rgba(255,255,255,.18); }
.instagram-strip__copy { padding: 50px max(30px, calc((100vw - 1280px) / 2)); padding-right: 40px; display: flex; flex-direction: column; justify-content: center; }
.instagram-strip__copy p { margin: 0 0 7px; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.instagram-strip__copy a { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 32px); }
.instagram-strip__copy i { margin-left: 8px; font-size: 11px; }
.instagram-images { min-height: 230px; display: grid; grid-template-columns: repeat(4, 1fr); }
.instagram-images img { width: 100%; height: 100%; object-fit: cover; }

.new-footer { padding-top: 75px; color: var(--white); background: #100c0e; }
.brand--light { color: var(--white) !important; }
.footer-top { padding-bottom: 52px; display: grid; grid-template-columns: .7fr 1fr .7fr; align-items: center; border-bottom: 1px solid var(--white-line); }
.footer-statement { font-family: var(--display); font-size: clamp(28px, 3.4vw, 48px); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; text-align: center; }
.footer-statement em { color: var(--coral); }
.footer-cta { justify-self: end; display: inline-flex; align-items: center; gap: 13px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.footer-grid { padding-block: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 45px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid h3 { margin: 0 0 9px; color: rgba(255,255,255,.43); font: 700 10px var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.73); font-size: 13px; }
.footer-grid a:hover { color: var(--coral); }
.footer-grid i { margin-left: 5px; font-size: 9px; }
.footer-bottom { padding: 22px 0 25px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.footer-bottom > div { display: flex; gap: 24px; }

.floating-whatsapp { position: fixed; z-index: 900; right: 24px; bottom: 24px; min-height: 50px; padding: 0 19px; display: flex; align-items: center; gap: 9px; color: var(--white) !important; background: var(--green); border-radius: 999px; box-shadow: 0 13px 30px rgba(12,73,49,.25); font-size: 12px; font-weight: 700; transition: transform .25s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp i { font-size: 20px; }
.mobile-contact-bar { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Numbered editorial dividers make each chapter unmistakable. */
.section-space[data-section-label] {
  --section-rule: var(--line);
  --section-label-color: var(--ink-soft);
  position: relative;
  padding-top: clamp(150px, 13vw, 190px);
}
.section-space[data-section-label]::before {
  content: attr(data-section-label);
  height: 64px;
  padding-left: max(32px, calc((100vw - 1280px) / 2));
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--section-label-color);
  border-top: 1px solid var(--section-rule);
  border-bottom: 1px solid var(--section-rule);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.section-space[data-section-label]::after {
  content: attr(data-section-number);
  width: 72px;
  height: 64px;
  position: absolute;
  top: 0;
  right: max(32px, calc((100vw - 1280px) / 2));
  display: grid;
  place-items: center;
  color: var(--section-label-color);
  border-left: 1px solid var(--section-rule);
  border-right: 1px solid var(--section-rule);
  font-family: var(--serif);
  font-size: 15px;
}
.services-section,
.process,
.quote-section {
  --section-rule: rgba(255,255,255,.2) !important;
  --section-label-color: rgba(255,255,255,.6) !important;
}
.intro-heading h2,
.services-head h2,
.section-heading h2,
.process-intro h2,
.quote-copy h2,
.faq-title h2,
.why h2 {
  max-width: 860px;
  font-size: clamp(40px, 4.6vw, 66px);
  letter-spacing: -.042em;
}
.section-heading { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.services-head { padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.2); }
.project-grid { margin-top: 8px; }
.why-card { min-height: 330px; }
.footer-statement { font-family: var(--serif); }

/* Existing inner pages receive the same brand atmosphere without changing their content. */
body:not(.home-redesign) {
  --color-navy-darkest: #100c0e;
  --color-navy-dark: #181012;
  --color-navy: #3e101d;
  --color-navy-medium: #4a1323;
  --color-navy-light: #551326;
  --color-gold: #b68a54;
  --color-gold-light: #d8c2a2;
  --color-gold-lighter: #e6d8c4;
  --color-gold-dark: #8f673a;
  --color-cream: #f1ede4;
  --color-cream-dark: #e5ded2;
  --font-heading: "Cormorant Garamond", Garamond, Georgia, serif;
  --font-body: "Jost", Arial, sans-serif;
  --font-accent: "Jost", Arial, sans-serif;
}
body:not(.home-redesign) .navbar { background: rgba(16,12,14,.96); border-bottom: 1px solid rgba(255,255,255,.14); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
body:not(.home-redesign) .navbar__logo-text { font-family: var(--font-heading); font-size: 23px; }
body:not(.home-redesign) .navbar__logo-icon { color: var(--color-gold); }
body:not(.home-redesign) .navbar__logo { position: relative; }
body:not(.home-redesign) .navbar__logo-icon { padding: 6px; background: #181012; border-radius: 50%; box-shadow: inset 0 0 0 1px currentColor; }
body:not(.home-redesign) .navbar__logo::before {
  content: "K";
  width: 40px;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 50%;
  color: #fffdf9;
  font: 600 12px/1 var(--font-heading);
  text-align: center;
  transform: translateY(-51%);
}
body:not(.home-redesign) .navbar__logo::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  z-index: 4;
  left: 31px;
  top: 5px;
  background: var(--color-gold);
  border: 2px solid #181012;
  transform: rotate(45deg);
}
body:not(.home-redesign) .page-hero { min-height: 430px; padding-top: 180px; display: flex; align-items: center; position: relative; overflow: hidden; background: #181012; border-bottom: 1px solid rgba(255,255,255,.2); }
body:not(.home-redesign) .page-hero::before { content: ""; position: absolute; inset: 110px 24px 24px; border: 1px solid rgba(255,255,255,.14); }
body:not(.home-redesign) .page-hero__title { font-family: var(--font-heading); font-size: clamp(42px, 6vw, 72px); font-weight: 500; }
body:not(.home-redesign) .section--cream { color: #1c1718; background: #f1ede4; }
body:not(.home-redesign) .section--cream h1,
body:not(.home-redesign) .section--cream h2,
body:not(.home-redesign) .section--cream h3 { color: #27191d; }
body:not(.home-redesign) .card,
body:not(.home-redesign) .feature-card,
body:not(.home-redesign) .package-card,
body:not(.home-redesign) .contact-form-wrapper { border-radius: 3px; }
body:not(.home-redesign) .footer { background: #100c0e !important; }
body:not(.home-redesign) .btn { border-radius: 2px; }
body:not(.home-redesign) .whatsapp-float { background: #187d55; }
body:not(.home-redesign) .navbar__inner > .navbar__cta {
  color: #27191d;
  background: #eadfce;
  border-color: #eadfce;
}
body:not(.home-redesign) .service-detail h2,
body:not(.home-redesign) .service-detail h3 { color: #f8f2e9 !important; }
body:not(.home-redesign) .service-detail__feature-text { color: rgba(248, 242, 233, .82); }

@media (max-width: 1024px) {
  body:not(.home-redesign) .navbar__menu { background: rgba(16, 12, 14, .985); }
  body:not(.home-redesign) .navbar__link { color: #f8f2e9; border-bottom-color: rgba(248, 242, 233, .12); }
  body:not(.home-redesign) .navbar__link--active { color: #d6bc97; }
}

@media (max-width: 768px) {
  body:not(.home-redesign) .mobile-bar { background: rgba(16, 12, 14, .98); border-top-color: rgba(248, 242, 233, .18); }
  body:not(.home-redesign) .mobile-bar__btn { color: #f8f2e9; background: transparent; border-color: rgba(248, 242, 233, .24); }
  body:not(.home-redesign) .mobile-bar__btn--quote,
  body:not(.home-redesign) .mobile-bar__btn--whatsapp { color: #27191d; background: #eadfce; }
}

/* Ortak çerez tercih paneli */
.cookie-banner {
  display: none;
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: #f8f2e9;
  background: rgba(16, 12, 14, .98);
  border: 1px solid rgba(214, 188, 151, .36);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.cookie-banner.active { display: block; }
.cookie-banner__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px 28px;
}
.cookie-banner__copy strong { display: block; margin-bottom: 5px; font: 600 20px/1.2 var(--font-heading); }
.cookie-banner__copy p { margin: 0; color: rgba(248, 242, 233, .76); font-size: 13px; line-height: 1.6; }
.cookie-banner__copy a { color: #d6bc97; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-choice {
  min-height: 42px;
  padding: 10px 15px;
  color: #f8f2e9;
  background: transparent;
  border: 1px solid rgba(248, 242, 233, .35);
  border-radius: 2px;
  font: 600 12px/1.2 var(--font-body);
  cursor: pointer;
}
.cookie-choice:hover, .cookie-choice:focus-visible { border-color: #d6bc97; outline: 2px solid transparent; }
.cookie-choice--primary { color: #27191d; background: #eadfce; border-color: #eadfce; }
.cookie-banner .cookie-choice--primary { color: #27191d; }
.cookie-banner__settings {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(248, 242, 233, .15);
}
.cookie-banner__settings label { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 13px; }
.cookie-banner__settings small { color: rgba(248, 242, 233, .58); }
.cookie-preferences-link {
  display: block;
  margin: 14px auto;
  padding: 4px;
  color: inherit;
  opacity: .62;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 720px) {
  .cookie-banner { right: 8px; bottom: 74px; left: 8px; }
  .cookie-banner__inner { width: calc(100% - 28px); grid-template-columns: 1fr; padding: 16px 0; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-choice { flex: 1 1 135px; }
}

@media (max-width: 1120px) {
  :root { --shell: min(100% - 42px, 1280px); }
  .desktop-nav { gap: 17px; }
  .header-phone { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2) { border-right: 0; }
  .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 840px) {
  :root { --shell: calc(100vw - 36px); --header-height: 76px; }
  .site-header.is-scrolled { height: 68px; }
  .desktop-nav, .header-actions .button { display: none; }
  .menu-button { display: grid; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 720px; }
  .hero::before { inset: calc(var(--header-height) + 12px) 12px 12px; }
  .hero-content { padding-top: clamp(145px, 19vh, 180px); }
  .hero h1, .hero h2 { font-size: clamp(52px, 13vw, 82px); }
  .hero-shade { background: linear-gradient(90deg, rgba(25,8,15,.8), rgba(25,8,15,.25)), linear-gradient(0deg, rgba(20,6,12,.74), transparent 64%); }
  .hero-controls { bottom: 27px; }
  .hero-scroll { display: none; }
  .marquee { overflow-x: auto; scrollbar-width: none; }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-track { width: max-content; margin: 0; grid-template-columns: repeat(6, minmax(165px, 1fr)); }
  .intro-grid, .process-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 42px; }
  .intro-copy { padding-top: 0; }
  .intro-stats { margin-top: 15px; }
  .services-head { align-items: flex-start; flex-direction: column; }
  .services-head__right { max-width: 100%; width: 100%; justify-content: space-between; }
  .service-rail { padding-left: 18px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card--tall { grid-row: auto; min-height: 520px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-note { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-note:last-child { border-bottom: 0; }
  .process-grid { gap: 70px; }
  .process-intro, .faq-title { position: static; }
  .quote-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
  .instagram-strip { grid-template-columns: 1fr; }
  .instagram-strip__copy { padding: 38px 20px; }
  .instagram-images { min-height: 190px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-statement { order: 3; grid-column: 1 / -1; text-align: left; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 590px) {
  :root { --shell: calc(100vw - 30px); }
  .section-space { padding-block: 82px; }
  .section-space[data-section-label] { padding-top: 126px; }
  .section-space[data-section-label]::before { height: 54px; padding-left: 18px; }
  .section-space[data-section-label]::after { width: 54px; height: 54px; right: 15px; }
  .hero { min-height: 690px; height: 100svh; }
  .hero-slide > img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(27,8,15,.77), rgba(27,8,15,.3)), linear-gradient(0deg, rgba(22,7,13,.85), transparent 72%); }
  .hero-content { padding-top: 130px; }
  .hero h1, .hero h2 { font-size: clamp(49px, 15.2vw, 68px); line-height: .94; }
  .hero-lead { margin-top: 22px; font-size: 15px; }
  .hero-actions { margin-top: 27px; flex-direction: column; align-items: flex-start; gap: 15px; }
  .button { min-height: 50px; padding-inline: 21px; }
  .hero-controls { justify-content: space-between; }
  .hero-dots { display: none; }
  .hero-arrows button { width: 42px; }
  .hero-autoplay { min-height: 42px; padding-inline: 11px; }
  .hero-autoplay span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .marquee { padding-block: 0; }
  .marquee span { min-height: 68px; font-size: 9px; }
  .intro-heading h2, .services-head h2, .section-heading h2, .process-intro h2, .quote-copy h2, .faq-title h2, .why h2 { font-size: 42px; }
  .intro-copy p { font-size: 17px; }
  .intro-stats { grid-template-columns: 1fr; }
  .intro-stats > div, .intro-stats > div:not(:first-child) { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .intro-stats > div:last-child { border-bottom: 0; }
  .services-head__right p { max-width: 230px; }
  .service-rail { margin-top: 44px; gap: 14px; }
  .service-card { width: calc(100vw - 48px); }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .project-grid { gap: 14px; }
  .project-card, .project-card--wide, .project-card--tall { min-height: 420px; }
  .reviews .section-heading { align-items: flex-start; }
  .reviews-score { margin-top: 4px; }
  .review-note { padding: 28px; }
  .process-grid { gap: 55px; }
  .process-list li { grid-template-columns: 48px 1fr; padding: 28px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 295px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .why-card:last-child { border-bottom: 0 !important; }
  .why-icon { margin-bottom: 48px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 27px 22px; }
  .quote-contact strong { font-size: 12px; }
  .instagram-images { grid-template-columns: repeat(2, 1fr); }
  .instagram-images img:nth-child(n+3) { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cta { justify-self: start; }
  .footer-statement { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 18px; }
  .footer-bottom { padding-bottom: 88px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .floating-whatsapp { display: none; }
  .mobile-contact-bar { position: fixed; z-index: 950; inset: auto 0 0; padding: 8px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 7px; color: var(--white); background: rgba(29,12,18,.96); border-top: 1px solid rgba(255,255,255,.12); }
  .mobile-contact-bar a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: 12px; font-weight: 700; }
  .mobile-contact-bar a:last-child { color: var(--wine-deep); background: var(--cream); border-color: var(--cream); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   2026 inner-page system: the same editorial language as the new homepage.
   -------------------------------------------------------------------------- */
body:not(.home-redesign) {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body:not(.home-redesign) .container {
  width: var(--shell);
  max-width: none;
  padding-inline: 0;
}
body:not(.home-redesign) .navbar {
  min-height: 82px;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--white);
  background: rgba(16, 12, 14, .84);
  border-bottom: 1px solid rgba(255,255,255,.15);
  box-shadow: none;
}
body:not(.home-redesign) .navbar--scrolled {
  min-height: 70px;
  background: rgba(16, 12, 14, .97);
  box-shadow: 0 12px 36px rgba(16,12,14,.18);
}
body:not(.home-redesign) .navbar__inner { min-height: inherit; gap: 30px; }
body:not(.home-redesign) .navbar__logo { gap: 12px; }
body:not(.home-redesign) .navbar__logo-text {
  color: var(--white);
  font: 600 23px/1 var(--serif);
  letter-spacing: -.02em;
}
body:not(.home-redesign) .navbar__menu { margin-left: auto; gap: clamp(18px, 2.3vw, 34px); }
body:not(.home-redesign) .navbar__link {
  padding-block: 14px;
  color: rgba(255,255,255,.78);
  font: 600 13px/1.2 var(--sans);
}
body:not(.home-redesign) .navbar__link::after { height: 1px; background: var(--coral); }
body:not(.home-redesign) .navbar__link:hover,
body:not(.home-redesign) .navbar__link--active { color: var(--white); }
body:not(.home-redesign) .navbar__inner > .navbar__cta,
body:not(.home-redesign) .navbar__menu .navbar__cta {
  min-height: 44px;
  margin-left: 0;
  padding: 0 20px;
  color: var(--wine-deep);
  background: var(--cream);
  border: 1px solid var(--cream);
}

body:not(.home-redesign) .page-hero {
  min-height: 450px;
  padding: 165px 0 86px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(182,138,84,.19), transparent 28%),
    linear-gradient(135deg, #100c0e 0%, #3e101d 70%, #551326 100%);
  border-bottom: 0;
  text-align: left !important;
}
body:not(.home-redesign) .page-hero::before {
  inset: 104px 22px 22px;
  border-color: rgba(255,255,255,.17);
}
body:not(.home-redesign) .page-hero::after {
  content: "KALPTEN / BURSA";
  position: absolute;
  right: max(34px, calc((100vw - 1280px) / 2));
  bottom: 42px;
  color: rgba(255,255,255,.36);
  font: 600 9px/1 var(--sans);
  letter-spacing: .24em;
}
body:not(.home-redesign) .page-hero .container { position: relative; z-index: 1; }
body:not(.home-redesign) .page-hero__title {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font: 500 clamp(48px, 6vw, 78px)/.98 var(--serif);
  letter-spacing: -.045em;
}
body:not(.home-redesign) .breadcrumb {
  margin-top: 26px !important;
  padding: 0;
  display: flex !important;
  justify-content: flex-start !important;
  gap: 9px !important;
  color: rgba(255,255,255,.55) !important;
  font-size: 11px;
  letter-spacing: .05em;
}
body:not(.home-redesign) .breadcrumb a { color: rgba(255,255,255,.78) !important; }
body:not(.home-redesign) .breadcrumb__current { color: var(--coral) !important; }

.inner-trust-strip { color: var(--ink); background: var(--cream); border-bottom: 1px solid var(--line); }
.inner-trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.inner-trust-strip__grid > div {
  min-height: 94px;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.inner-trust-strip__grid > div:first-child { border-left: 1px solid var(--line); }
.inner-trust-strip__grid strong { font: 500 25px/1 var(--serif); }
.inner-trust-strip__grid span { margin-top: 7px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

body:not(.home-redesign) .section { padding-block: clamp(82px, 8vw, 118px); }
body:not(.home-redesign) .section:not(.section--navy):not(.section--cream):not(.service-planning) { color: var(--ink); background: var(--paper); }
body:not(.home-redesign) .section--cream { color: var(--ink); background: var(--cream); }
body:not(.home-redesign) .section--navy { color: var(--white); background: #151113 !important; }
body:not(.home-redesign) .section-title {
  margin: 0 0 24px;
  color: var(--ink);
  font: 500 clamp(38px, 4.3vw, 60px)/1.04 var(--serif);
  letter-spacing: -.04em;
}
body:not(.home-redesign) .section--navy .section-title { color: var(--white); }
body:not(.home-redesign) .section-description,
body:not(.home-redesign) .service-detail__text { color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
body:not(.home-redesign) .section--navy .section-description,
body:not(.home-redesign) .section--navy .text-gray { color: rgba(255,255,255,.64) !important; }
body:not(.home-redesign) .section-label {
  color: var(--coral) !important;
  font: 700 10px/1 var(--sans);
  letter-spacing: .18em;
}
body:not(.home-redesign) .section-label::before { height: 1px; background: currentColor; }
body:not(.home-redesign) .section-divider { height: 1px; background: var(--line); }
body:not(.home-redesign) .image-wrapper,
body:not(.home-redesign) .card__image-wrapper { border-radius: 0 !important; border: 1px solid var(--line) !important; }
body:not(.home-redesign) .image-wrapper img { filter: saturate(.82); }

body:not(.home-redesign) .btn {
  min-height: 50px;
  padding: 0 23px;
  border-width: 1px;
  border-radius: 2px;
  font: 700 12px/1 var(--sans);
}
body:not(.home-redesign) .btn--primary { color: var(--white); background: var(--wine); border-color: var(--wine); }
body:not(.home-redesign) .btn--primary:hover { color: var(--white); background: var(--wine-dark); border-color: var(--wine-dark); }
body:not(.home-redesign) .section--navy .btn--primary { color: var(--wine-deep); background: var(--cream); border-color: var(--cream); }
body:not(.home-redesign) .btn--whatsapp { color: var(--white); background: var(--green); border-color: var(--green); }

body:not(.home-redesign) .feature-card,
body:not(.home-redesign) .package-card,
body:not(.home-redesign) .card {
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 0 !important;
  box-shadow: none;
}
body:not(.home-redesign) .feature-card { min-height: 310px; padding: 34px; text-align: left !important; }
body:not(.home-redesign) .feature-card__icon { margin: 0 0 60px !important; justify-content: flex-start !important; color: var(--coral) !important; }
body:not(.home-redesign) .feature-card__title { font: 500 28px/1.12 var(--serif); }
body:not(.home-redesign) .feature-card__text { color: rgba(255,255,255,.62) !important; font-size: 13px; }

body:not(.home-redesign) .service-detail { color: var(--ink); background: var(--paper) !important; }
body:not(.home-redesign) .service-detail .grid--2 { align-items: start; gap: clamp(45px, 7vw, 95px); }
body:not(.home-redesign) .service-detail h2,
body:not(.home-redesign) .service-detail h3 { color: var(--ink) !important; }
body:not(.home-redesign) .service-detail__features {
  margin-top: 28px !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
  border-top: 1px solid var(--line);
}
body:not(.home-redesign) .service-detail__feature {
  min-height: 52px;
  margin: 0 !important;
  border-bottom: 1px solid var(--line);
}
body:not(.home-redesign) .service-detail__feature-text { color: var(--ink-soft); font-size: 13px; }
body:not(.home-redesign) .service-detail__feature-icon { color: var(--wine) !important; }

.service-planning { color: var(--white); background: var(--wine-dark) !important; }
.service-planning__head { max-width: 780px; }
.service-planning__head > span { color: var(--coral); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.service-planning__head h2 { margin: 17px 0 22px; color: var(--white); font: 500 clamp(40px, 4.5vw, 64px)/1 var(--serif); letter-spacing: -.04em; }
.service-planning__head p { max-width: 650px; margin: 0; color: rgba(255,255,255,.66); }
.service-planning__grid { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.18); }
.service-planning__grid article { min-height: 245px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.service-planning__grid article:last-child { border-right: 0; }
.service-planning__grid b { color: var(--coral); font-size: 10px; letter-spacing: .12em; }
.service-planning__grid h3 { margin: 70px 0 10px; color: var(--white); font: 500 25px/1.1 var(--serif); }
.service-planning__grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; }
.service-planning__action { padding: 26px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.service-planning__action p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }

body:not(.home-redesign) .gallery__filters {
  margin-bottom: 42px !important;
  padding-bottom: 18px;
  justify-content: flex-start;
  border-bottom: 1px solid var(--line);
}
body:not(.home-redesign) .gallery__filter-btn {
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
body:not(.home-redesign) .gallery__filter-btn.active,
body:not(.home-redesign) .gallery__filter-btn[aria-pressed="true"] { color: var(--white); background: var(--wine); border-color: var(--wine); }
body:not(.home-redesign) .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
body:not(.home-redesign) .gallery__item {
  min-height: 360px;
  border: 0;
  border-radius: 0;
  background: var(--cream-deep);
  cursor: zoom-in;
}
body:not(.home-redesign) .gallery__item:nth-child(4n + 1) { grid-row: span 2; min-height: 738px; }
body:not(.home-redesign) .gallery__img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84); }
body:not(.home-redesign) .gallery__item-label {
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(16,12,14,.84);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  font: 600 11px/1.35 var(--sans);
  transform: none;
}

body:not(.home-redesign) .contact-form-wrapper,
body:not(.home-redesign) .contact-info-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: none;
}
body:not(.home-redesign) .form__input,
body:not(.home-redesign) .form__select,
body:not(.home-redesign) .form__textarea {
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(28,23,24,.26);
  border-radius: 0;
}
body:not(.home-redesign) .form__label { color: var(--ink); font-size: 11px; letter-spacing: .05em; }
body:not(.home-redesign) iframe { filter: saturate(.7) contrast(.94); border-radius: 0 !important; }

body:not(.home-redesign) .footer {
  padding-top: 72px;
  color: var(--white);
  background: #100c0e !important;
  border-top: 1px solid rgba(255,255,255,.12);
}
body:not(.home-redesign) .footer__grid { padding-bottom: 52px; gap: 44px; }
body:not(.home-redesign) .footer__title {
  margin-bottom: 16px !important;
  color: rgba(255,255,255,.42) !important;
  font: 700 10px/1 var(--sans) !important;
  letter-spacing: .15em;
  text-transform: uppercase;
}
body:not(.home-redesign) .footer__brand-text { color: var(--white); font: 500 28px/1.1 var(--serif); }
body:not(.home-redesign) .footer__links { gap: 9px; }
body:not(.home-redesign) .footer__links a,
body:not(.home-redesign) .footer__contact-item,
body:not(.home-redesign) .footer__contact-item a { color: rgba(255,255,255,.7) !important; font-size: 13px; }
body:not(.home-redesign) .footer__bottom { margin-top: 0 !important; padding: 23px 0 !important; border-top: 1px solid rgba(255,255,255,.1) !important; }

body:not(.home-redesign) :focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; }

@media (max-width: 1024px) {
  body:not(.home-redesign) .navbar__menu {
    width: min(100%, 440px);
    max-width: none;
    padding: 112px 34px 40px;
    justify-content: flex-start;
    gap: 0;
    background: rgba(16,12,14,.99);
    border-left: 1px solid rgba(255,255,255,.14);
  }
  body:not(.home-redesign) .navbar__link { padding: 19px 0; color: var(--white); font: 500 30px/1 var(--serif); }
  body:not(.home-redesign) .navbar__toggle {
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.55);
  }
  .service-planning__grid { grid-template-columns: repeat(2, 1fr); }
  .service-planning__grid article:nth-child(2) { border-right: 0; }
  .service-planning__grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  body:not(.home-redesign) .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  body:not(.home-redesign) .gallery__item:nth-child(4n + 1) { grid-row: auto; min-height: 420px; }
}

@media (max-width: 720px) {
  body:not(.home-redesign) { padding-bottom: 68px; }
  body:not(.home-redesign) .container { width: calc(100vw - 30px); }
  body:not(.home-redesign) .navbar { min-height: 70px; }
  body:not(.home-redesign) .navbar__logo-text { font-size: 20px; }
  body:not(.home-redesign) .page-hero { min-height: 380px; padding: 132px 0 68px; }
  body:not(.home-redesign) .page-hero::before { inset: 84px 10px 10px; }
  body:not(.home-redesign) .page-hero::after { display: none; }
  body:not(.home-redesign) .page-hero__title { font-size: clamp(42px, 13vw, 59px); }
  body:not(.home-redesign) .breadcrumb { margin-top: 20px !important; flex-wrap: wrap; }
  .inner-trust-strip__grid { grid-template-columns: 1fr; }
  .inner-trust-strip__grid > div,
  .inner-trust-strip__grid > div:first-child { min-height: 70px; padding: 16px 0; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .inner-trust-strip__grid > div:last-child { border-bottom: 0; }
  .inner-trust-strip__grid strong { font-size: 22px; }
  body:not(.home-redesign) .section { padding-block: 72px; }
  body:not(.home-redesign) .section-title { font-size: 39px; }
  body:not(.home-redesign) .feature-card { min-height: 260px; }
  body:not(.home-redesign) .service-detail__features { grid-template-columns: 1fr; }
  .service-planning__grid { grid-template-columns: 1fr; }
  .service-planning__grid article,
  .service-planning__grid article:nth-child(2) { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .service-planning__grid article:last-child { border-bottom: 0; }
  .service-planning__grid h3 { margin-top: 42px; }
  .service-planning__action { align-items: flex-start; flex-direction: column; }
  body:not(.home-redesign) .gallery__filters { margin-inline: -15px; padding-inline: 15px; overflow-x: auto; flex-wrap: nowrap; }
  body:not(.home-redesign) .gallery__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  body:not(.home-redesign) .gallery__item,
  body:not(.home-redesign) .gallery__item:nth-child(4n + 1) { min-height: 260px; }
  body:not(.home-redesign) .gallery__item-label { inset: auto 8px 8px; padding: 10px; font-size: 9px; }
  body:not(.home-redesign) .footer { padding-top: 52px; }
  body:not(.home-redesign) .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  body:not(.home-redesign) .mobile-bar {
    padding: 7px;
    color: var(--white);
    background: rgba(16,12,14,.98);
    border-top: 1px solid rgba(255,255,255,.14);
  }
  body:not(.home-redesign) .mobile-bar__inner { gap: 7px; }
  body:not(.home-redesign) .mobile-bar__btn { min-height: 48px; border-radius: 999px; }
  body:not(.home-redesign) .whatsapp-float { display: none; }
  .cookie-banner { right: 8px; bottom: 74px; left: 8px; max-height: calc(100svh - 94px); overflow-y: auto; }
  .cookie-banner__inner { width: calc(100% - 28px); padding: 14px 0; gap: 12px; text-align: left; }
  .cookie-banner__copy strong { font-size: 17px; }
  .cookie-banner__copy p { font-size: 11px; line-height: 1.45; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
  .cookie-choice { min-height: 42px; padding: 8px 10px; font-size: 11px; }
  .cookie-choice[data-cookie-settings] { grid-column: 1 / -1; }
}
