:root {
  --bg: #ffffff;
  --bg-alt: #f7f5f1;
  --bg-dark: #15192a;
  --ink: #15192a;
  --ink-soft: #4a4f63;
  --ink-muted: #7a7f93;
  --line: #e6e2d8;
  --line-soft: #efece4;
  --accent: #b08a4e;
  --accent-hover: #9a7740;
  --accent-soft: #c4a572;
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1180px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 7rem);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.section-title { max-width: 780px; margin-bottom: 1.6rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

input, textarea {
  font-family: inherit;
  font-size: 16px; /* prevents iOS Safari auto-zoom on focus */
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 138, 78, 0.18);
}
textarea { resize: vertical; min-height: 140px; }

/* ---- Nav ---- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  box-shadow: 0 6px 24px -16px rgba(21, 25, 42, 0.18);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad-x);
  gap: 1.5rem;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.logo__mark { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--ink); }
.logo__tag {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}
.nav__links { display: flex; align-items: center; gap: 2.1rem; font-size: 0.9rem; font-weight: 500; }
.nav__links a { position: relative; padding: 0.4rem 0; color: var(--ink-soft); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -3px;
  height: 1px;
  background: var(--accent);
  transition: right 0.25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.lang {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.55rem 0.95rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang:hover { border-color: var(--accent); color: var(--accent); }
.burger { display: none; flex-direction: column; gap: 4px; padding: 0.4rem; }
.burger span { width: 22px; height: 1.5px; background: var(--ink); }

@media (max-width: 880px) {
  .logo__tag { display: none; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    padding: 0.5rem var(--pad-x) 1.4rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav__links a:last-child { border-bottom: none; }
  .burger { display: flex; }
}

/* ---- Hero ---- */
.hero {
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: var(--section-y);
  background:
    radial-gradient(900px 480px at 90% -10%, rgba(176, 138, 78, 0.10), transparent 60%),
    linear-gradient(180deg, #fbf9f5 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line-soft);
}
.hero__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: center; }
.hero__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}
.hero__title { font-size: clamp(2.6rem, 5.5vw, 4.2rem); line-height: 1.08; margin-bottom: 1.6rem; }
.hero__lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 620px; margin-bottom: 1.2rem; }
#hero-intro { margin-bottom: 1rem; }
#hero-intro .hero__lead:last-child { margin-bottom: 2.2rem; }
.hero__aside { display: flex; justify-content: center; }
.seal {
  width: min(380px, 90%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1f2e 0%, #2a3148 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 0 8px rgba(176, 138, 78, 0.08),
    0 30px 60px -30px rgba(21, 25, 42, 0.5);
  display: grid;
  place-items: center;
  position: relative;
}
.seal::before { content: ''; position: absolute; inset: 18px; border-radius: 50%; border: 1px solid rgba(196, 165, 114, 0.35); }
.seal::after  { content: ''; position: absolute; inset: 28px; border-radius: 50%; border: 1px dashed rgba(196, 165, 114, 0.18); }
.seal__inner { text-align: center; color: var(--accent-soft); }
.seal__mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  color: #f3e7cf;
}
.seal__sub {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  color: rgba(243, 231, 207, 0.7);
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__aside { order: -1; }
  .seal { width: min(240px, 60%); }
}

/* ---- About ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about__head { position: sticky; top: 6rem; }
.about__body p { font-size: 1.05rem; color: var(--ink-soft); }
.about__list { margin: 1.5rem 0; display: grid; gap: 0.8rem; }
.about__list li { padding-left: 1.6rem; position: relative; color: var(--ink-soft); }
.about__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7rem;
  width: 0.6rem; height: 1px;
  background: var(--accent);
}
.about__outro {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-style: italic;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__head { position: static; }
}

/* ---- Why Us ---- */
.why__head { max-width: 880px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.why__intro { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.why__subtitle { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 0; }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 30px 50px -40px rgba(21, 25, 42, 0.35);
}
.card__index { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--accent); margin-bottom: 0.8rem; letter-spacing: 0.05em; }
.card__title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.8rem; }
.card__body { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.6; margin: 0; }

/* ---- Services ---- */
.services__head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.services__list { border-top: 1px solid var(--line); }
.service { border-bottom: 1px solid var(--line); }
.service__header {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.7rem 0;
  text-align: left;
  transition: color 0.2s ease;
}
.service__header:hover { color: var(--accent); }
.service__num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  min-width: 2.5rem;
}
.service__title {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  line-height: 1.25;
}
.service__chev {
  display: inline-flex;
  transition: transform 0.25s ease;
  color: var(--ink-soft);
}
.service.is-open .service__chev { transform: rotate(180deg); color: var(--accent); }
.service__body {
  display: none;
  padding: 0 0 2rem;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  animation: fade 0.25s ease;
}
.service.is-open .service__body { display: grid; }
.service__intro { color: var(--ink-soft); font-size: 1rem; margin: 0; padding-left: 3.9rem; }
.service__bullets { display: grid; gap: 0.7rem; }
.service__bullets li { padding-left: 1.6rem; position: relative; color: var(--ink-soft); }
.service__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7rem;
  width: 0.6rem; height: 1px;
  background: var(--accent);
}
.services__cta { display: flex; justify-content: center; margin-top: clamp(2.5rem, 5vw, 4rem); }
@keyframes fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 800px) {
  .service__body { grid-template-columns: 1fr; }
  .service__intro { padding-left: 0; }
}

/* ---- Contact ---- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact__intro { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2rem; }
.contact__details { display: grid; gap: 1.2rem; margin: 0; }
.contact__details > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.contact__details dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__details dd { margin: 0; color: var(--ink); font-size: 1.05rem; }
.contact__details a:hover { color: var(--accent); }

.contact__form {
  background: #fff;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: grid;
  gap: 1.1rem;
}
.cf-turnstile {
  min-height: 65px;     /* reserve space before the widget mounts */
  max-width: 100%;      /* prevent horizontal overflow on narrow screens */
  overflow: hidden;
}
.field { display: grid; gap: 0.45rem; align-content: start; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field__err {
  font-size: 0.85rem;
  color: #a23131;
  min-height: 1.2em;      /* reserves space so appearing errors don't shift the form */
  line-height: 1.2;
}
.field__err:empty { visibility: hidden; }
.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #a23131;
}
.field.is-invalid label { color: #a23131; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-items: start; }
.feedback { margin: 0; color: #2f6c3f; font-size: 0.95rem; }
.feedback.is-error { color: #a23131; }

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .contact__details > div { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* Mobile: tighter form padding to give inputs breathing room + full-width
   submit button so it's an easy thumb target. */
@media (max-width: 600px) {
  .contact__form {
    padding: 1.25rem 1.1rem;
    gap: 1.2rem;
  }
  .contact__form .btn {
    width: 100%;
    padding: 1.05rem 1.5rem;
    font-size: 0.92rem;
  }
  .field label {
    font-size: 0.72rem;
  }
  .contact__details dd { font-size: 1rem; }
  .contact__details a { text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
}

/* ---- Footer ---- */
.footer { background: var(--bg-dark); color: rgba(255, 255, 255, 0.7); padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; }
.footer__inner { display: grid; gap: 1.8rem; }
.footer__brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer__mark { font-family: var(--serif); font-size: 1.6rem; color: #fff; font-weight: 600; }
.footer__tag { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__nav a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); transition: color 0.2s ease; }
.footer__nav a:hover { color: var(--accent-soft); }
.footer__copy { margin: 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); }

@media (max-width: 720px) { h1 { line-height: 1.2; } }
