
:root {
  --gold:        #bf8b45;
  --gold-deep:   #a5742e;
  --gold-text:   #8a6425;
  --gold-soft:   rgba(191, 139, 69, 0.14);

  --cream-1:     #f6f1e9;
  --cream-2:     #efe8dc;
  --white:       #ffffff;

  --ink:         #1f1c18;
  --body:        #5d574e;
  --muted:       #938b7e;
  --line:        #e6ded0;
  --field-bg:    #fcfaf6;

  --footer-bg:   #14110d;
  --footer-text: rgba(245, 240, 232, 0.62);
  --footer-line: rgba(245, 240, 232, 0.10);

  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --motion:      cubic-bezier(0.2, 0.8, 0.2, 1);
  --gutter:      clamp(1.25rem, 4vw, 4.5rem);
  --radius:      14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background:
    radial-gradient(120% 80% at 85% 0%, #fbf7f0 0%, var(--cream-1) 45%, var(--cream-2) 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed; top: .75rem; left: 50%; z-index: 300;
  transform: translate(-50%, -160%);
  padding: .65rem 1.3rem; background: var(--gold); color: #fff;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; border-radius: 4px;
  transition: transform .35s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); outline: none; }

::selection { background: rgba(191, 139, 69, 0.22); color: var(--ink); }
.eyebrow { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 1.1rem; }
.overline {
  font-size: .72rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1.6rem; position: relative;
}

a:focus-visible {
  outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px;
}
.chero__content .overline::after {
  content: ""; display: block; width: 54px; height: 2px; background: var(--gold); margin-top: .9rem;
}
.overline--center { text-align: center; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 200;
  background: rgba(246, 241, 233, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 222, 208, 0.7);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1rem var(--gutter);
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 48px; width: auto; display: block; }
.brand__logo--footer { height: 42px; opacity: 0.9; }

.nav__links { display: flex; gap: clamp(1.1rem, 2vw, 2rem); }
.nav__links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--body); transition: color .3s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a.is-active { color: var(--gold); }

.nav__cta {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem; background: var(--gold); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 4px; transition: background .35s var(--ease), transform .35s var(--ease);
}
.nav__cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

.lang-menu { position: relative; }
.lang-menu__btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .38rem .8rem; border-radius: 4px;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--body);
  background: none; transition: all .3s var(--ease); white-space: nowrap;
}
.lang-menu__btn svg { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.lang-menu__btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-menu.is-open .lang-menu__btn svg { transform: rotate(180deg); }
.lang-menu__list {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 210;
  min-width: 132px; padding: .4rem;
  background: #ffffff; border: 1px solid #eee7d9; border-radius: 8px;
  box-shadow: 0 18px 40px -22px rgba(40, 28, 12, 0.35);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.lang-menu.is-open .lang-menu__list { opacity: 1; visibility: visible; transform: none; }
.lang-menu__list li a, .lang-menu__list li span {
  display: block; padding: .55rem .8rem; border-radius: 5px;
  font-size: .78rem; font-weight: 500; color: #3f3a33;
}
.lang-menu__list li .lang-menu__current { color: #a5742e; cursor: default; }
.lang-menu__list li a:hover { background: #f6f1e7; color: #16140f; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.chero {
  position: relative; overflow: hidden; background: #fff;
  display: flex; align-items: flex-start;
  min-height: 100vh;
  padding-top: 70px;
}

.chero__media {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/contact-hero.jpg");
  background-repeat: no-repeat;
  background-size: 112% auto;
  background-position: -25% 134%;
}
.chero__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(95deg, #fff 0%, #fff 22%, rgba(255,255,255,0) 46%);
}
@media (min-width: 1700px) {
  .chero__media::after {
    background: linear-gradient(95deg, #fff 0%, #fff 32%, rgba(255,255,255,0) 58%);
  }
}

.chero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: clamp(4rem, 16vh, 9rem) var(--gutter) clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: flex-start;
}
.chero__title {
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  font-size: clamp(2.8rem, 6.5vw, 5rem); line-height: 1.04; letter-spacing: -0.01em;
}
.chero__title span { color: var(--gold); font-style: italic; }
.chero__text {
  margin-top: 1.6rem; max-width: 34ch; font-size: 1.02rem; font-weight: 300; line-height: 1.8;
  color: var(--body);
}

.chero__contacts {
  list-style: none; display: flex; flex-wrap: wrap; gap: 1.8rem 2rem;
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  max-width: 56%;
}
.ccard { display: flex; align-items: center; gap: .75rem; }
.ccard__icon {
  flex: none; width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--gold-soft); border-radius: 50%; color: var(--gold); background: var(--white);
}
.ccard__icon svg { width: 17px; height: 17px; }
.ccard__label {
  display: block; font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .22rem;
}
.ccard__body a { font-size: .82rem; color: var(--ink); font-weight: 500; transition: color .3s var(--ease); }
.ccard__body a:hover { color: var(--gold); }

.chero__quote {
  position: absolute; z-index: 2;
  left: 58%; bottom: clamp(2rem, 6vh, 4rem);
  background: var(--white); padding: clamp(1.6rem, 2.5vw, 2.1rem) clamp(1.8rem, 2.6vw, 2.3rem); max-width: 360px;
  box-shadow: 0 24px 50px -20px rgba(40, 28, 12, 0.3);
}
.chero__quote-mark {
  font-family: var(--font-display); font-size: 3.4rem; line-height: .4; color: var(--gold);
  display: block; height: 1.4rem;
}
.chero__quote blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1.25; color: var(--ink);
}
.chero__quote figcaption {
  margin-top: 1rem; font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-text);
}

.inquiry { padding: clamp(3.5rem, 6vw, 6rem) var(--gutter) clamp(2rem, 4vw, 3rem); }
.inquiry__card {
  max-width: 1080px; margin: 0 auto; background: var(--white); border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4.5rem); box-shadow: 0 40px 90px -50px rgba(40, 28, 12, 0.3);
}
.inquiry__head { text-align: center; margin-bottom: 2.8rem; }
.inquiry__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--ink); line-height: 1.1;
}
.inquiry__sub { margin-top: .8rem; color: var(--muted); font-size: .98rem; }

.form { display: flex; flex-direction: column; gap: 1.9rem; }
.form__row { display: grid; gap: 1.5rem; }

.field { display: flex; flex-direction: column; border: none; min-width: 0; }
.field__label {
  font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .55rem; letter-spacing: .01em;
}
.field__label em { color: var(--gold-deep); font-style: normal; }
.field__hint { font-size: .82rem; color: var(--muted); margin: -.2rem 0 .85rem; }

input[type="text"], input[type="email"], input[type="tel"], textarea, .phone__cc {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--ink);
  background: var(--field-bg); border: 1px solid var(--line); border-radius: 8px;
  padding: .95rem 1.05rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
input::placeholder, textarea::placeholder { color: #b3aa9b; }
input:focus, textarea:focus, .phone__cc:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
textarea { resize: vertical; min-height: 7rem; line-height: 1.6; }

.phone { display: flex; gap: .6rem; }
.phone__cc {
  width: auto; flex: none; padding-right: 1.8rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23938b7e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .6rem center; background-size: 14px;
  -webkit-appearance: none; appearance: none;
}
.phone input { flex: 1; }

.method-field { min-width: 0; }
.methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.method input { position: absolute; opacity: 0; pointer-events: none; }
.method__inner {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem .6rem; border: 1px solid var(--line); border-radius: 8px; background: var(--field-bg);
  font-size: .82rem; font-weight: 500; color: var(--body);
  transition: all .3s var(--ease);
}
.method__inner svg { width: 17px; height: 17px; color: var(--muted); }
.method input:checked + .method__inner {
  border-color: var(--gold); background: var(--gold-soft); color: var(--gold-deep);
}
.method input:checked + .method__inner svg { color: var(--gold-deep); }
.method input:focus-visible + .method__inner { box-shadow: 0 0 0 3px var(--gold-soft); }

.services-field { min-width: 0; }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.tile {
  position: relative; display: flex; align-items: center; gap: .7rem;
  padding: 1rem; border: 1px solid var(--line); border-radius: 9px; background: var(--field-bg);
  cursor: pointer; transition: all .3s var(--ease);
}
.tile:hover { border-color: var(--gold); background: var(--white); }
.tile input { position: absolute; opacity: 0; pointer-events: none; }
.tile__icon {
  flex: none; width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; background: var(--gold-soft); color: var(--gold);
  transition: all .3s var(--ease);
}
.tile__icon svg { width: 18px; height: 18px; }
.tile__label { font-size: .84rem; font-weight: 500; color: var(--ink); line-height: 1.25; }
.tile input:checked ~ .tile__icon,
.tile:has(input:checked) .tile__icon { background: var(--gold); color: #fff; }
.tile:has(input:checked) { border-color: var(--gold); background: var(--gold-soft); }
.tile:has(input:focus-visible) { box-shadow: 0 0 0 3px var(--gold-soft); }

.textarea-wrap { position: relative; }
.counter {
  position: absolute; right: .9rem; bottom: .7rem; font-size: .72rem; color: var(--muted);
  pointer-events: none;
}

.form__submit { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; margin-top: .6rem; }
.btn-gold {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.05rem 2.6rem; border: none; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); color: #fff;
  font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: 0 16px 30px -14px rgba(165, 116, 46, 0.7);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .3s var(--ease);
}
.btn-gold svg { width: 17px; height: 17px; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 38px -14px rgba(165, 116, 46, 0.8); }
.btn-gold:disabled { opacity: .65; transform: none; cursor: default; }
.btn-gold:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.form__secure {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted);
}
.form__secure svg { width: 15px; height: 15px; color: var(--gold); }
.form__status { font-size: .9rem; color: var(--gold-deep); font-weight: 500; min-height: 1.2em; text-align: center; }

.contact-strip { padding: clamp(1rem, 3vw, 2.5rem) var(--gutter) clamp(3.5rem, 6vw, 6rem); }
.contact-strip__card {
  max-width: 1080px; margin: 0 auto; background: var(--white); border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 1fr; box-shadow: 0 30px 70px -45px rgba(40, 28, 12, 0.25);
}
.contact-strip__image { min-height: 200px; }
.contact-strip__image img { width: 100%; height: 100%; object-fit: cover; }
.contact-strip__grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem);
}
.info { text-align: center; }
.info__icon {
  display: inline-grid; place-items: center; width: 50px; height: 50px; margin-bottom: 1rem;
  border-radius: 50%; background: var(--gold-soft); color: var(--gold);
}
.info__icon svg { width: 21px; height: 21px; }
.info h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--ink); margin-bottom: .5rem; }
.info a { display: block; color: var(--ink); font-weight: 500; font-size: .94rem; transition: color .3s var(--ease); }
.info a:hover { color: var(--gold); }
.info p { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

.footer { background: var(--footer-bg); color: var(--footer-text); padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem; }
.footer__top {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--footer-line);
}
.brand--footer .brand__name { color: #f3ede2; }
.footer__tagline { margin: 1.2rem 0 1.4rem; font-size: .88rem; line-height: 1.7; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--footer-line); color: var(--footer-text); transition: all .3s var(--ease);
}
.footer__social svg { width: 17px; height: 17px; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.footer__col h4 {
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.3rem;
}
.footer__col a, .footer__contact {
  display: block; font-size: .88rem; color: var(--footer-text); margin-bottom: .7rem;
  transition: color .3s var(--ease);
}
.footer__col a:hover { color: var(--gold); }
.footer__contact { display: flex; align-items: center; gap: .6rem; }
.footer__contact svg { width: 15px; height: 15px; flex: none; color: var(--gold); }

.footer__bottom {
  max-width: 1280px; margin: 1.6rem auto 0; text-align: center; font-size: .8rem; color: rgba(245, 240, 232, 0.4);
}

.js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 640ms var(--motion), transform 640ms var(--motion);
}
.reveal.is-visible { opacity: 1; transform: none; }

.form .field.reveal:nth-child(2) { transition-delay: 70ms; }
.form .field.reveal:nth-child(3) { transition-delay: 140ms; }
.form .reveal.is-visible { transition-delay: 0ms; }

.js .chero__content > * {
  opacity: 0; transform: translateY(26px);
  animation: cheroRise 1s var(--ease) forwards;
}
.js .chero__content > .overline         { animation-delay: .15s; }
.js .chero__content > .chero__title     { animation-delay: .30s; }
.js .chero__content > .chero__text      { animation-delay: .48s; }
.js .chero__content > .chero__contacts  { animation-delay: .66s; }
@keyframes cheroRise { to { opacity: 1; transform: none; } }

.js .chero__quote {
  opacity: 0; transform: translateY(30px);
  animation: cheroRise 1s var(--ease) .8s forwards;
}

.nav__links a { position: relative; padding-bottom: 3px; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 220ms var(--motion);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.tile:hover { transform: translateY(-2px); }
.tile { transition: transform 200ms var(--motion), border-color 300ms var(--ease), background 300ms var(--ease); }

@media (min-width: 720px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
  .contact-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .contact-strip__card { grid-template-columns: 240px 1fr; }
  .footer__top { grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr; }
}
@media (min-width: 960px) {
  .form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 960px) {
  .chero { flex-direction: column; min-height: 0; }
  .chero__media {
    order: 1; position: relative; inset: auto;
    width: 100%; height: clamp(260px, 64vw, 400px);
    background-size: cover; background-position: center;
  }
  .chero__media::after { display: none; }
  .chero__quote {
    order: 2; position: static; left: auto; right: auto; bottom: auto;
    max-width: none; margin: -3.5rem 1.25rem 0; align-self: stretch;
  }
  .chero__content { order: 3; padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .chero__contacts { max-width: none; }
}

@media (max-width: 940px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream-1); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .45s var(--ease);
  }
  .nav__links.is-open { max-height: 70vh; }
  .nav__links a { padding: 1rem var(--gutter); border-top: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .methods { grid-template-columns: 1fr; }
  .chero__quote { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; padding: 1.4rem 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js .reveal, .js .chero__content > *, .js .chero__quote { opacity: 1 !important; transform: none !important; filter: none !important; }
}

.nav__lang { display: none; }
@media (max-width: 940px) {
  .lang-menu { display: none; }
  .nav__lang { display: block; }
}
