/* Class Emlak — Kurumsal Gayrimenkul */
:root {
  --ink: #0c1118;
  --ink-soft: #161d27;
  --ink-mid: #243040;
  --stone: #e6e9ee;
  --mist: #f4f6f8;
  --muted: #8a93a0;
  --line: rgba(12, 17, 24, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --accent: #2f6b5a;
  --accent-deep: #1e4a3e;
  --brass: #a8906a;
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --header-h: 5rem;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --max: 72rem;
}

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

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor textarea,
body.has-cursor [data-magnetic] {
  cursor: none;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* —— Loader —— */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--stone);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
  width: min(16rem, 70vw);
}

.loader__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease) 0.15s forwards;
}

.loader__bar {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.loader__progress {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brass);
  animation: loadBar 1.4s var(--ease) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

/* —— Custom cursor —— */
.cursor,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  opacity: 0;
  mix-blend-mode: difference;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s;
}

.cursor-follower.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }

  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button {
    cursor: auto;
  }
}

/* —— Header —— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--pad);
  color: var(--white);
  transition: background 0.5s var(--ease), color 0.5s var(--ease), box-shadow 0.5s;
}

.header.is-scrolled {
  background: rgba(244, 246, 248, 0.92);
  color: var(--ink);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.header__logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  transition: background 0.4s, color 0.4s;
}

.header__logo:hover .header__logo-mark {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.header.is-scrolled .header__logo:hover .header__logo-mark {
  color: var(--white);
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.header__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity 0.3s;
  position: relative;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.header__link:hover {
  opacity: 1;
}

.header__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__link--cta {
  opacity: 1;
  padding: 0.65rem 1.25rem;
  border: 1px solid currentColor;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}

.header__link--cta::after {
  display: none;
}

.header__link--cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.header__menu {
  display: none;
  width: 2.5rem;
  height: 2rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  z-index: 2;
}

.header__menu span {
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.header__menu.is-open span:first-child {
  transform: translateY(0.28rem) rotate(45deg);
}

.header__menu.is-open span:last-child {
  transform: translateY(-0.28rem) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s, border-color 0.4s;
}

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

.btn--primary:hover {
  background: var(--accent-deep);
}

.btn--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--full {
  width: 100%;
}

.btn svg {
  transition: transform 0.4s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* —— Typography helpers —— */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.eyebrow--light {
  color: var(--brass);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

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

.section-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.25rem;
}

.section-text--light {
  color: rgba(230, 233, 238, 0.72);
}

.line-mask {
  display: block;
  overflow: hidden;
}

.line-mask .line {
  display: block;
  transform: translateY(110%);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) var(--pad) 4.5rem;
  color: var(--white);
  overflow: hidden;
}

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

.hero__image {
  position: absolute;
  inset: -8%;
  background:
    url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=2400&q=80")
      center / cover no-repeat;
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 17, 24, 0.45) 0%, rgba(12, 17, 24, 0.25) 40%, rgba(12, 17, 24, 0.82) 100%),
    linear-gradient(90deg, rgba(12, 17, 24, 0.55) 0%, transparent 55%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.hero__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 28rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 4.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__scroll-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  transform-origin: top;
  animation: scrollPulse 2.2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.45);
    opacity: 0.4;
  }
}

/* —— Marquee —— */
.marquee {
  background: var(--ink);
  color: var(--stone);
  padding: 1.35rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee__track span:nth-child(even) {
  color: var(--brass);
  opacity: 0.7;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* —— About —— */
.about {
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(47, 107, 90, 0.08), transparent 55%),
    var(--mist);
}

.about__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__img {
  position: absolute;
  inset: -10% 0;
  background:
    url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=1400&q=80")
      center / cover no-repeat;
  will-change: transform;
}

.about__badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.25rem;
  background: var(--ink);
  color: var(--stone);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  min-width: 9.5rem;
}

.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1;
  color: var(--brass);
}

.about__badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  opacity: 0.75;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}

.stat__plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.stat__label {
  flex-basis: 100%;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* —— Approach —— */
.approach {
  background:
    linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 55%, #132018 100%);
  color: var(--stone);
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: none;
}

.approach__header {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.approach__list {
  display: flex;
  flex-direction: column;
}

.approach__item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line-light);
  transition: padding-left 0.5s var(--ease);
}

.approach__item:last-child {
  border-bottom: 1px solid var(--line-light);
}

.approach__item:hover {
  padding-left: 0.75rem;
}

.approach__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brass);
  padding-top: 0.2rem;
}

.approach__body h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.approach__body p {
  color: rgba(230, 233, 238, 0.62);
  max-width: 28rem;
}

/* —— Services —— */
.services {
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  background:
    linear-gradient(180deg, var(--mist) 0%, #ebeff3 100%);
}

.services__intro {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
}

.services__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  background: var(--mist);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

.service:hover {
  background: var(--white);
}

.service__icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.service__icon svg {
  width: 100%;
  height: 100%;
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service p {
  color: var(--muted);
  max-width: 22rem;
  font-size: 0.98rem;
}

.service__line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.6s var(--ease);
}

.service:hover .service__line {
  width: 100%;
}

/* —— Siirt —— */
.siirt {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  overflow: hidden;
  color: var(--stone);
}

.siirt__bg {
  position: absolute;
  inset: -12% 0;
  background:
    linear-gradient(105deg, rgba(12, 17, 24, 0.88) 0%, rgba(12, 17, 24, 0.45) 55%, rgba(12, 17, 24, 0.7) 100%),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=2200&q=80")
      center / cover no-repeat;
  will-change: transform;
}

.siirt__content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.siirt__quote {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(230, 233, 238, 0.9);
}

/* —— Promise —— */
.promise {
  padding: clamp(5rem, 12vw, 8rem) var(--pad);
  background: var(--white);
}

.promise__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.promise__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 auto 3.5rem;
  max-width: 28ch;
}

.promise__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.promise__item h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--accent-deep);
}

.promise__item p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Contact —— */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact__details li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.contact__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  transition: color 0.3s;
}

a.contact__value:hover {
  color: var(--accent);
}

.contact__form {
  background:
    linear-gradient(145deg, rgba(47, 107, 90, 0.06), transparent 40%),
    var(--white);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid var(--line);
}

.field {
  margin-bottom: 1.35rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.form-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--accent-deep);
}

/* —— Footer —— */
.footer {
  background: var(--ink);
  color: var(--stone);
  padding: 3.5rem var(--pad) 2rem;
}

.footer__top {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  color: rgba(230, 233, 238, 0.55);
  max-width: 18rem;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.3s, color 0.3s;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--brass);
}

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(230, 233, 238, 0.45);
}

.footer__city {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__credit {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  text-align: center;
}

.footer__credit a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 233, 238, 0.45);
  transition: color 0.3s;
}

.footer__credit a:hover {
  color: var(--brass);
}

/* —— Skip link —— */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10000;
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.25rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Callout CTA —— */
.callout {
  padding: clamp(4rem, 9vw, 6.5rem) var(--pad);
  background:
    linear-gradient(120deg, rgba(47, 107, 90, 0.1), transparent 45%),
    linear-gradient(180deg, #eef2f4 0%, var(--mist) 100%);
  border-bottom: 1px solid var(--line);
}

.callout__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.callout__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.callout__text {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.callout__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.btn--call {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem 1.15rem 1.25rem;
  background: var(--ink);
  color: var(--stone);
  min-width: min(100%, 20rem);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.btn--call:hover {
  background: var(--accent-deep);
}

.btn--call__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--brass);
  flex-shrink: 0;
}

.btn--call__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.btn--call__meta strong {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(230, 233, 238, 0.55);
}

.btn--call__meta em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.callout__note {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* —— Team —— */
.team {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.team__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.team__intro {
  margin-bottom: 3rem;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.team__card {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background 0.4s var(--ease);
}

.team__card:hover {
  background: var(--mist);
}

.team__initials {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
}

.team__card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.team__card p {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* —— Guide (SEO content) —— */
.guide {
  padding: clamp(5rem, 11vw, 8rem) var(--pad);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(47, 107, 90, 0.07), transparent 50%),
    var(--mist);
}

.guide__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.guide__header {
  margin-bottom: 3rem;
  max-width: 40rem;
}

.guide__block {
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
}

.guide__block:last-child {
  border-bottom: 1px solid var(--line);
}

.guide__block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--ink);
}

.guide__block p {
  color: var(--muted);
  max-width: 48rem;
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.guide__block p:last-child {
  margin-bottom: 0;
}

.guide__block a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— FAQ —— */
.faq {
  padding: clamp(5rem, 11vw, 8rem) var(--pad);
  background: var(--white);
}

.faq__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-top: 1px solid var(--line);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 300;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item summary:hover {
  color: var(--accent-deep);
}

.faq__answer {
  padding: 0 0 1.5rem;
}

.faq__answer p {
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.7;
}

.faq__answer a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— WhatsApp float —— */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  background: #1f6b4a;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(12, 17, 24, 0.28);
  transition: transform 0.4s var(--ease), background 0.35s;
}

.wa-float:hover {
  background: #185a3d;
}

.wa-float__pulse {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(31, 107, 74, 0.45);
  animation: waPulse 2.4s var(--ease) infinite;
  pointer-events: none;
}

.wa-float__icon {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.wa-float__label {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.footer__address {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(230, 233, 238, 0.5);
  max-width: 22rem;
}

.footer__seo {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.footer__seo p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(230, 233, 238, 0.4);
  max-width: 52rem;
}

.contact__value {
  line-height: 1.35;
}

/* —— Reveal defaults —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

[data-reveal="hero"] {
  opacity: 0;
  transform: translateY(28px);
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .about__grid,
  .approach,
  .contact,
  .callout__inner,
  .faq__inner {
    grid-template-columns: 1fr;
  }

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

  .approach__header {
    position: static;
  }

  .about__badge {
    right: 0;
  }

  .promise__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero__scroll {
    display: none;
  }
}

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

  .header__nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--stone);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease), visibility 0.45s;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .header__link {
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    opacity: 1;
    font-family: var(--font-display);
    text-transform: none;
  }

  .header__link--cta {
    margin-top: 1rem;
  }

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

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

  .hero {
    align-items: center;
    padding-bottom: 3rem;
  }

  .hero__brand {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .wa-float__label {
    display: none;
  }

  .wa-float {
    padding: 0.7rem;
    border-radius: 0;
  }

  .btn--call {
    width: 100%;
  }
}

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

  .marquee__track {
    animation: none;
  }

  [data-reveal],
  [data-reveal="hero"] {
    opacity: 1;
    transform: none;
  }
}
