/* ============================================================
   PLURAL · Niente di singolare.
   Light mode · Corallo · Bold display
   ============================================================ */

:root {
  /* palette · light mode + corallo */
  --bg:           #FFFFFF;
  --bg-2:         #F7F4ED;
  --bg-3:         #FFFFFF;
  --bg-elev:      #FFFFFF;
  --ink:          #0A0A0B;
  --ink-dim:      rgba(10, 10, 11, 0.72);
  --ink-mute:     rgba(10, 10, 11, 0.50);
  --accent:       #FF5C42;
  --accent-deep:  #D8401F;
  --accent-soft:  rgba(255, 92, 66, 0.12);
  --line:         rgba(10, 10, 11, 0.10);
  --line-strong:  rgba(10, 10, 11, 0.18);
  --shadow-card:  0 24px 48px -28px rgba(10, 10, 11, 0.18);
  --shadow-hover: 0 36px 64px -28px rgba(255, 92, 66, 0.30);

  /* type */
  --display: "Bricolage Grotesque", "Inter", system-ui, -apple-system, sans-serif;
  --logo:    "Archivo Black", "Bricolage Grotesque", system-ui, sans-serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* metrics */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 10vw, 8.5rem);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--bg); }

/* subtle paper grain on light */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.brand__mark {
  width: 30px;
  height: auto;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
  filter: drop-shadow(0 0 8px rgba(255, 92, 66, 0.18));
}
.brand__mark--lg { width: 48px; }
.brand__mark .b-disc { fill: var(--accent); }
.brand__mark .b-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}
.brand:hover .brand__mark { transform: rotate(-12deg) scale(1.06); }

.brand__word {
  font-family: var(--logo);
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255, 92, 66, 0.18);
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right 0.35s ease;
}
.nav__links a:hover { opacity: 1; color: var(--accent); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.nav__cta:hover { background: var(--ink); color: #FFFFFF; transform: translateY(-1px); }
.nav__cta svg { width: 14px; height: 14px; }

@media (max-width: 780px) {
  .nav__links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) var(--gutter) clamp(5rem, 10vw, 9rem);
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 2.5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 92, 66, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 92, 66, 0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 92, 66, 0); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.75rem, 13.5vw, 12.5rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 0 0 2.25rem;
  color: var(--ink);
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: rise 0.95s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title .line:nth-child(2) { animation-delay: 0.18s; }
.line--accent { color: var(--accent); }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 2.5rem;
  opacity: 0;
  animation: rise 0.95s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.95s cubic-bezier(.2,.7,.2,1) 0.55s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.005em;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn svg { width: 14px; height: 14px; }
.btn--primary {
  background: var(--accent);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--ink);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.hero__art {
  position: absolute;
  right: -8%;
  top: 4%;
  width: clamp(380px, 60vw, 720px);
  color: var(--ink);
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to   { transform: translate3d(-2%, 1.5%, 0) rotate(8deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--gutter);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__scroll-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: slide 2.4s ease-in-out infinite;
}
@keyframes slide {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */
.section__head {
  max-width: var(--container);
  margin: 0 auto var(--gutter);
  padding: 0 var(--gutter);
}
.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1.4rem;
}
.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.2vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 22ch;
  margin: 0;
  color: var(--ink);
}
.section__title em {
  font-style: normal;
  color: var(--accent);
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.manifesto__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.manifesto__lead {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  grid-column: 1 / 2;
  padding-left: 1.75rem;
  position: relative;
}
.manifesto__lead::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1s cubic-bezier(.2,.7,.2,1) 0.25s;
  box-shadow: 0 0 14px rgba(255, 92, 66, 0.4);
}
.manifesto__lead.is-visible::before { transform: scaleY(1); }
.manifesto__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-dim);
  margin: 0;
  grid-column: 2 / 3;
}
.values {
  grid-column: 1 / -1;
  list-style: none;
  margin: 3rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.values li {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 1rem;
}
.values li span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

@media (max-width: 800px) {
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__lead, .manifesto__body { grid-column: 1; }
  .values { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   THREE WORLDS
   ============================================================ */
.worlds {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.worlds__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.world {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
              border-color 0.45s ease,
              box-shadow 0.45s ease;
  overflow: hidden;
}
.world::before {
  content: "";
  position: absolute;
  inset: auto -40% -50% auto;
  width: 360px; height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,92,66,0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.world:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}
.world:hover::before { opacity: 1; }

.world__index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.world__index span {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.84rem;
  color: var(--accent);
}
.world__index svg {
  width: 44px; height: 44px;
  color: var(--ink);
  opacity: 0.85;
}

.world__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}

.world__copy {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-dim);
  margin: 0;
}
.world__copy strong { font-weight: 600; color: var(--ink); }

.world__tags {
  list-style: none;
  margin: auto 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
}
.world__tags li {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  position: relative;
  padding-left: 0.85rem;
}
.world__tags li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 980px) {
  .worlds__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.stat::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 28px; height: 2px;
  background: var(--accent);
}
.stat__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat__label {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PROPERTIES
   ============================================================ */
.properties {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.properties__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.property {
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.property:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.property__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.property__visual svg {
  width: 100%; height: 100%;
  transition: transform 0.7s ease;
}
.property:hover .property__visual svg { transform: scale(1.04); }
.property__chip {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
}

.property__meta {
  padding: 1.85rem 1.85rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.property__meta h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.property__meta p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-dim);
}
.property__phones { font-variant-numeric: tabular-nums; }
.property__link {
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.property:hover .property__link { transform: translateX(4px); }

@media (max-width: 880px) {
  .properties__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.contact__head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 3rem;
}
.contact__lede {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-dim);
}

.contact__layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 980px) {
  .contact__layout { grid-template-columns: 1fr; }
}

/* ---------- FORM ---------- */
.contact__form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}
.field--full { grid-column: 1 / -1; }

.field label,
.pills legend {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 0;
}

.field input,
.field textarea {
  appearance: none;
  width: 100%;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
  font-weight: 400;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elev);
  box-shadow: 0 0 0 3px rgba(255, 92, 66, 0.18);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 90, 70, 0.6);
}

/* ---------- PILLS ---------- */
.pills {
  border: none;
  margin: 0;
  padding: 0;
}
.pills__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pills label {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.pills input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pills span {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-dim);
  background: transparent;
  transition: all 0.25s ease;
}
.pills label:hover span {
  border-color: var(--ink);
  color: var(--ink);
}
.pills input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.pills input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(255, 92, 66, 0.25);
}

/* ---------- ACTIONS ---------- */
.field--actions {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}
.form__note {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ---------- SUCCESS ---------- */
.form__success {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.3rem;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  font-family: var(--sans);
  color: var(--ink);
}
.form__success strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

/* ---------- DIRECT SIDEBAR ---------- */
.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: 5rem;
}
.contact__direct-label {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.25rem;
}

.contact__card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.contact__card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--bg-3);
}
.contact__card--mini { padding: 1rem 1.2rem; }

.contact__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact__value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  word-break: break-word;
}

@media (max-width: 700px) {
  .contact__form { grid-template-columns: 1fr; }
  .contact__direct { position: static; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A0A0B;
  color: #F5F2EB;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter) 2rem;
  border-top: 1px solid var(--line);
  --ink: #F5F2EB;
  --ink-dim: rgba(245, 242, 235, 0.74);
  --ink-mute: rgba(245, 242, 235, 0.50);
  --line: rgba(245, 242, 235, 0.10);
}
.footer .brand__mark .b-disc { fill: var(--accent); }
.footer .brand__mark .b-ring { stroke: var(--accent); }

.footer__brand {
  max-width: var(--container);
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2.5rem;
}
.footer__tag {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.footer__tag::after {
  content: "";
  display: inline-block;
  width: 0.6em; height: 0.6em;
  background: var(--accent);
  border-radius: 999px;
  margin-left: 0.3em;
  vertical-align: 0.05em;
}

.footer__cols {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols div { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__label {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer__cols p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-dim);
}
.footer__cols a:hover { color: var(--accent); }

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}

@media (max-width: 720px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   EXTRA ANIMATIONS
   ============================================================ */

/* Kicker · animated lime line that grows on reveal */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  transition:
    width 0.85s cubic-bezier(.2,.7,.2,1) 0.15s,
    margin-right 0.85s cubic-bezier(.2,.7,.2,1) 0.15s;
}
.section__head.is-visible .kicker::before,
.contact__head.is-visible .kicker::before {
  width: 28px;
  margin-right: 0.7rem;
}

/* Section title accent · gentle pop on reveal */
.section__title em {
  display: inline-block;
  transform-origin: 50% 80%;
}
.section__head.is-visible .section__title em {
  animation: title-pop 1.1s cubic-bezier(.2,.7,.2,1) 0.5s both;
}
@keyframes title-pop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.08); }
  70%  { transform: scale(0.98); }
  100% { transform: scale(1); }
}

/* Footer tagline dot · same pulse as hero locator */
.footer__tag::after {
  box-shadow: 0 0 0 4px rgba(255, 92, 66, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

/* Button arrow · translate on hover */
.btn svg,
.nav__cta svg {
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.btn--primary:hover svg,
.nav__cta:hover svg {
  transform: translateX(4px);
}

/* World card · micro-interactions on hover */
.world__index svg {
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}
.world:hover .world__index svg {
  transform: rotate(-10deg) scale(1.08);
  color: var(--accent);
}
.world__index span {
  transition: color 0.3s ease, letter-spacing 0.4s ease;
}
.world:hover .world__index span { letter-spacing: 0.3em; }

/* Stat counter · number transition */
.stat__num {
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.stat::before { transition: width 0.8s cubic-bezier(.2,.7,.2,1) 0.2s; }
.stat.is-visible::before { width: 56px; }

/* Property card · visual lifts on hover */
.property__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,11,12,0.4) 100%);
  pointer-events: none;
}

/* Form · error state */
.form__error {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.3rem;
  border-radius: 10px;
  background: rgba(176, 31, 28, 0.06);
  border: 1px solid rgba(176, 31, 28, 0.45);
  font-family: var(--sans);
  color: var(--ink);
}
.form__error strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #B01F1C;
}

/* Reveal-animated success/error banners */
.form__success:not([hidden]),
.form__error:not([hidden]) {
  animation: rise 0.55s cubic-bezier(.2,.7,.2,1) both;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
