/* ============================================================
   MODERNO — Elevate Your Home
   Design system · refined black + gold
   ============================================================ */

:root {
  --ink: #0f1013;
  --ink-2: #171a20;
  --ink-3: #22252e;
  --paper: #faf8f4;
  --stone: #f1ede5;
  --line: #e5dfd3;
  --line-dark: #2c2f39;
  --gold: #e8a33d;
  --gold-soft: #f2bc66;
  --gold-deep: #b97f24;
  --text: #3b3d43;
  --muted: #7b7d86;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(15, 16, 19, .25);
  --font-display: "Didot", "Bodoni MT", "Playfair Display", "Georgia", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
}

.lead { font-size: 1.13rem; color: var(--muted); max-width: 60ch; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.wrap {
  width: min(1180px, 100% - 2 * var(--pad));
  margin-inline: auto;
}

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head p { margin-top: .9rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 26px -10px rgba(232, 163, 61, .65);
}
.btn-gold:hover { box-shadow: 0 14px 32px -10px rgba(232, 163, 61, .85); transform: translateY(-2px); }
.btn-ghost {
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
  padding: .4rem 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 62px;
}
.site-header.scrolled,
.site-header.solid {
  /* no backdrop-filter here: it would become the containing block
     for the fixed-position mobile nav overlay */
  background: rgba(15, 16, 19, .96);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, .5);
}
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { height: 52px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
  color: rgba(255, 255, 255, .82);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .04em;
  position: relative;
  padding: .35rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--gold-soft); }

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  color: rgba(255, 255, 255, .7);
  border: 0;
  font: 650 .8rem var(--font-body);
  padding: .42rem .8rem;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.lang-toggle button.active { background: var(--gold); color: var(--ink); }

.header-cta { display: inline-flex; }

.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  position: relative;
  z-index: 120;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero-media, .hero-media video, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,16,19,.55) 0%, rgba(15,16,19,.15) 40%, rgba(15,16,19,.82) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 12vh, 8rem) clamp(2.5rem, 6vh, 4rem);
}
.hero h1 { color: var(--white); max-width: 14ch; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lead { color: rgba(255, 255, 255, .85); margin: 1.3rem 0 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(2rem, 5vh, 3.2rem);
  backdrop-filter: blur(10px);
}
.hero-stats > div {
  background: rgba(15, 16, 19, .55);
  padding: 1.1rem 1.3rem;
}
.stats-note {
  margin-top: .7rem;
  font-size: .75rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .55);
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-soft);
}
.hero-stats span { font-size: .82rem; color: rgba(255, 255, 255, .75); letter-spacing: .04em; }

/* ---------- service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}
.card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .4s;
}
.card:hover img { transform: scale(1.06); }
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,16,19,0) 35%, rgba(15,16,19,.88) 100%);
}
.card-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: var(--white);
  width: 100%;
}
.card-body h3 { color: var(--white); margin-bottom: .3rem; }
.card-body p { font-size: .92rem; color: rgba(255,255,255,.78); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s ease, opacity .4s ease, margin .4s; }
.card:hover .card-body p, .card:focus-within .card-body p { max-height: 140px; opacity: 1; margin-bottom: .4rem; }
.card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .5rem;
}

/* ---------- before / after ---------- */
.ba-section { background: var(--ink); color: var(--white); }
.ba-section h2, .ba-section h3 { color: var(--white); }
.ba-section .lead { color: rgba(255,255,255,.7); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  user-select: none;
  touch-action: none;
  box-shadow: var(--shadow);
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  pointer-events: none;
}
.ba-handle::after {
  content: "⟨ ⟩";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: -1px;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.ba-label {
  position: absolute;
  top: .8rem;
  z-index: 2;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(15,16,19,.65);
  color: var(--white);
  pointer-events: none;
}
.ba-label.before { left: .8rem; }
.ba-label.after { right: .8rem; background: var(--gold); color: var(--ink); }

/* ---------- 3D showcase ---------- */
.studio { background: linear-gradient(180deg, var(--paper), var(--stone)); }
.studio-frame {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #2a2d37 0%, var(--ink) 70%);
  box-shadow: var(--shadow);
}
.studio-frame canvas {
  display: block;
  width: 100%;
  height: clamp(340px, 58vh, 560px);
  cursor: grab;
  touch-action: none;
}
.studio-frame canvas:active { cursor: grabbing; }
.studio-hint {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .74rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.65);
  background: rgba(15,16,19,.5);
  padding: .35rem .8rem;
  border-radius: 999px;
  pointer-events: none;
}
.studio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.3rem;
}
.control-group { display: flex; flex-direction: column; gap: .55rem; }
.control-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.chip-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font: 600 .88rem var(--font-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: border-color .18s, background .18s, transform .18s;
}
.chip:hover { transform: translateY(-1px); border-color: var(--gold); }
.chip.active { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.chip .swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
}

/* ---------- financing band ---------- */
.fin-band {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.fin-band::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 640px; height: 640px;
  background: radial-gradient(closest-side, rgba(232,163,61,.22), transparent);
}
.fin-band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.fin-band h2 { color: var(--white); }
.fin-band .lead { color: rgba(255,255,255,.75); }
.fin-points { list-style: none; margin: 1.6rem 0 2rem; display: grid; gap: .9rem; }
.fin-points li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: rgba(255,255,255,.88);
}
.fin-points .tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 900;
  margin-top: .15rem;
}
.price-card {
  background: linear-gradient(160deg, #1d2028, #14161c);
  border: 1px solid var(--line-dark);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-card .from { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.price-card .price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 3.5rem);
  color: var(--gold-soft);
  line-height: 1;
  margin: .6rem 0 .2rem;
  white-space: nowrap;
}
.price-card .per { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.fin-note { font-size: .78rem; color: var(--muted); margin-top: 1.1rem; }

/* ---------- quote ---------- */
.quote {
  background:
    linear-gradient(rgba(250,248,244,.94), rgba(250,248,244,.94)),
    url("../assets/img/texture-marble-gold.jpg") center / cover;
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-style: italic;
  color: var(--ink);
  max-width: 26ch;
  margin: 0 auto;
  text-wrap: balance;
}
.quote cite { display: block; margin-top: 1.4rem; font-style: normal; font-size: .9rem; color: var(--gold-deep); letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }

/* ---------- gallery ---------- */
.masonry {
  columns: 3 300px;
  column-gap: 1.2rem;
}
.masonry figure {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.masonry img { transition: transform .6s cubic-bezier(.2,.7,.2,1); width: 100%; }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.2rem .9rem;
  background: linear-gradient(transparent, rgba(15,16,19,.8));
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 52svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  padding: 0;
}
.page-hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,16,19,.5), rgba(15,16,19,.85));
}
.page-hero .wrap { position: relative; z-index: 2; padding-block: 7rem 3rem; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.8); margin-top: 1rem; }

/* ---------- split ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split .imgbox {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split .imgbox img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- value cards / steps ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .8rem;
}
.value-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.value-card p { font-size: .93rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--ink);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-deep);
  transition: transform .25s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-top: .7rem; color: var(--muted); max-width: 65ch; }

/* ---------- contact strip ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.contact-card .icon { font-size: 1.4rem; margin-bottom: .7rem; }
.contact-card h3 { font-size: .8rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.contact-card a, .contact-card p { font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.contact-card a:hover { color: var(--gold-deep); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.site-footer img.flogo { height: 52px; width: auto; margin-bottom: 1.1rem; }
.site-footer h4 {
  color: var(--gold-soft);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; display: grid; gap: .55rem; font-size: .95rem; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-baseline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .fin-band .wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-burger { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(15, 16, 19, .97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
    z-index: 110;
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 1.4rem; font-family: var(--font-display); letter-spacing: .02em; }
  .lang-toggle { position: relative; z-index: 120; }
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88svh; }
  .studio-controls { flex-direction: column; align-items: stretch; }
}

/* ---------- contact page / Zoho form (themed) ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-side { display: grid; gap: 1rem; }
.contact-side .contact-card { background: var(--white); }

.zoho-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}
.zoho-card .zf-frmTitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: .3rem;
}
.zoho-card .zf-frmTitle em { font-style: normal; }
.zoho-card ul { list-style: none; margin: 0; padding: 0; }
.zoho-card .zf-tempFrmWrapper { margin-bottom: 1.35rem; }
.zoho-card .zf-labelName {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .55rem;
}
.zoho-card .zf-important { color: var(--gold-deep); font-style: normal; }
.zoho-card input[type="text"],
.zoho-card select {
  width: 100%;
  padding: .78rem .95rem;
  font: 400 .98rem var(--font-body);
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color .18s ease, box-shadow .18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.zoho-card select { background-image: none; }
.zoho-card input[type="text"]:focus,
.zoho-card select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, .18);
}
.zoho-card span > label,
.zoho-card .zf-addresCols label,
.zoho-card .zf-phwrapper label {
  display: block;
  font-size: .74rem;
  color: var(--muted);
  margin: .3rem 0 0 .2rem;
}
.zoho-card .zf-nameWrapper,
.zoho-card .address_row_3,
.zoho-card .address_row_4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.zoho-card .zf-nameWrapper span { display: block; }
.zoho-card .address_row_1,
.zoho-card .address_row_2 { margin-bottom: .9rem; }
.zoho-card .address_row_3,
.zoho-card .address_row_4 { margin-bottom: .9rem; }
.zoho-card .zf-addresCols { display: block; }
.zoho-card select[multiple] {
  min-height: 11.5rem;
  padding: .5rem;
}
.zoho-card select[multiple] option {
  padding: .55rem .8rem;
  border-radius: 8px;
  margin-bottom: 2px;
}
.zoho-card select[multiple] option:checked {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  font-weight: 600;
}
.zoho-card .zf-multi-hint {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .4rem;
}
.zoho-card .zf-errorMessage {
  color: #c0392b;
  font-size: .82rem;
  margin-top: .4rem;
  font-weight: 600;
}
.zoho-card .zf-fmFooter { margin-top: 1.6rem; }
.zoho-card .zf-submitColor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.9rem;
  border: 0;
  border-radius: 999px;
  font: 650 1rem var(--font-body);
  letter-spacing: .02em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 26px -10px rgba(232, 163, 61, .65);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.zoho-card .zf-submitColor:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(232, 163, 61, .85);
}
.zoho-card .zf-clearBoth { clear: both; }

@media (max-width: 940px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .zoho-card .zf-nameWrapper,
  .zoho-card .address_row_3,
  .zoho-card .address_row_4 { grid-template-columns: 1fr; }
}

/* phone with country code + currency + textarea (Contact form v2) */
.zoho-card .zf-phwrapper {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: .9rem;
}
.zoho-card .zf-phwrapper span { display: block; }
.zoho-card .zf-currencyWrap {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.zoho-card .zf-currencyWrap input { flex: 1; }
.zoho-card .zf-currencySuffix {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .45rem .8rem;
}
.zoho-card textarea {
  width: 100%;
  min-height: 7.5rem;
  padding: .78rem .95rem;
  font: 400 .98rem var(--font-body);
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  resize: vertical;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.zoho-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, .18);
}
