:root {
  --bg: #f6f2ed;
  --bg-alt: #efe8df;
  --white: #ffffff;
  --navy: #0f1a24;
  --coffee: #2b1f18;
  --coffee-soft: #6d5b4d;
  --micro: #9a8878;
  --gold: #c9a86a;
  --gold-dark: #b79254;
  --line: rgba(43, 31, 24, .12);
  --shadow-card: 0 6px 18px rgba(0, 0, 0, .06);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100dvh;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--coffee);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, #f9f4ee 0%, #f2e9df 52%, #eadfd3 100%),
    var(--bg);
}

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

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

html,
body {
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.selection-page {
  display: grid;
  min-height: 100dvh;
  padding: 34px;
  place-items: center;
}

.selection-card {
  width: min(100%, 740px);
  padding: clamp(32px, 5vw, 56px);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(43, 31, 24, .07);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(43, 31, 24, .10);
}

.brand-logo {
  width: min(306px, 78vw);
  height: auto;
  margin: 0 auto 26px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .10));
}

.intro {
  max-width: 620px;
  margin: 0 auto 28px;
  text-align: center;
}

.intro h1 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(32px, 4.7vw, 48px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-rule {
  display: block;
  width: 54px;
  height: 2px;
  margin: 15px auto 14px;
  background: var(--gold);
  border-radius: 999px;
}

.intro p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--coffee-soft);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 28px 26px;
  cursor: pointer;
  text-align: center;
  background: #fffdf9;
  border: 1px solid rgba(43, 31, 24, .09);
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(43, 31, 24, .05);
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.option-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(201, 168, 106, .65);
  box-shadow: 0 14px 34px rgba(43, 31, 24, .11);
}

.option-card:active {
  transform: translateY(-1px) scale(.99);
}

.option-card:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .72);
  outline-offset: 4px;
}

.option-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 0 16px;
  place-items: center;
  color: var(--gold-dark);
  background: rgba(201, 168, 106, .12);
  border: 1px solid rgba(201, 168, 106, .26);
  border-radius: 50%;
}

.option-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.option-card h2 {
  margin: 0 0 12px;
  color: var(--coffee);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.option-main {
  max-width: 250px;
  margin: 0 auto;
  color: var(--coffee);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.direct-contact {
  margin: 22px 0 0;
  color: var(--micro);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.direct-contact a {
  display: inline-block;
  padding-bottom: 2px;
  color: var(--gold-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.direct-contact a:hover {
  color: var(--coffee);
}

.direct-contact a:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .72);
  outline-offset: 4px;
  border-radius: 6px;
}

.option-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  margin-top: auto;
  padding: 13px 16px;
  color: #1a140f;
  background: var(--gold);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}

.option-card:hover .option-button {
  color: #fff;
  background: var(--gold-dark);
}

.contact-detail {
  display: grid;
  width: 100%;
  gap: 14px;
  margin: 4px 0 24px;
}

.contact-detail p {
  margin: 0;
  color: var(--coffee-soft);
  font-size: 14px;
  line-height: 1.5;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--coffee);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-detail a {
  color: var(--coffee-soft);
  font-weight: 700;
}

.contact-options {
  margin-top: 18px;
}

.contact-card {
  cursor: default;
}

.contact-card:hover {
  transform: none;
  background: #fffdf9;
  border-color: rgba(43, 31, 24, .09);
  box-shadow: 0 8px 22px rgba(43, 31, 24, .05);
}

.contact-form {
  display: grid;
  width: 100%;
  gap: 16px;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
}

.form-field-full {
  width: 100%;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--coffee);
  background: #ffffff;
  border: 1px solid rgba(43, 31, 24, .12);
  border-radius: 13px;
  font: 500 15px/1.35 "Inter", sans-serif;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201, 168, 106, .75);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, .14);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--micro);
}

.response-card {
  max-width: 560px;
  margin: 0 auto;
}

.response-card .option-button {
  margin-top: 22px;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin: 26px 0 0;
  color: var(--micro);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.contact > span,
.contact a {
  color: var(--coffee-soft);
  font-weight: 600;
}

.contact > span:not(:last-child)::after,
.contact > a:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: var(--micro);
}

.contact-address,
.contact-address span {
  display: inline;
}

.contact-address span:first-child::after {
  content: ", ";
}

.contact a:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .72);
  outline-offset: 4px;
  border-radius: 6px;
}

.index-faq {
  padding: 80px 24px 88px;
  background: var(--bg-alt);
}

.index-faq__inner {
  width: min(100%, 900px);
  margin-inline: auto;
}

.index-faq__header {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.index-faq__header h2 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.index-faq__header p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--coffee-soft);
  font-size: 17px;
  line-height: 1.5;
  text-wrap: balance;
}

.index-faq__list {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.index-faq__item {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(43, 31, 24, .08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(43, 31, 24, .04);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.index-faq__item:hover,
.index-faq__item[open] {
  background: #fffdf9;
  border-color: rgba(201, 168, 106, .44);
}

.index-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--coffee);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.index-faq__question::-webkit-details-marker {
  display: none;
}

.index-faq__question:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .55);
  outline-offset: 3px;
}

.index-faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--gold-dark);
  border-radius: 50%;
  transition: transform .2s ease;
}

.index-faq__icon::before,
.index-faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.index-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.index-faq__item[open] .index-faq__icon {
  transform: rotate(180deg);
}

.index-faq__item[open] .index-faq__icon::after {
  opacity: 0;
}

.index-faq__answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(43, 31, 24, .07);
}

.index-faq__answer p {
  margin: 16px 0 0;
  color: var(--coffee-soft);
  font-size: 15.5px;
  line-height: 1.58;
}

.index-faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 12px;
}

.index-faq__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--coffee);
  background: rgba(201, 168, 106, .12);
  border: 1px solid rgba(201, 168, 106, .28);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.index-faq__links a:hover {
  background: rgba(201, 168, 106, .20);
}

.index-faq__links a:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .index-faq__icon,
  .index-faq__item {
    transition: none;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .74), rgba(255, 255, 255, 0) 42%),
      linear-gradient(160deg, #f9f4ee 0%, #f2e9df 56%, #eadfd3 100%),
      var(--bg);
  }

  .selection-page {
    align-items: start;
    padding: 16px;
  }

  .selection-card {
    margin: 14px auto;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .brand-logo {
    width: min(232px, 74vw);
    margin-bottom: 15px;
  }

  .intro {
    margin-bottom: 18px;
  }

  .intro h1 {
    max-width: 330px;
    margin: 0 auto;
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.08;
  }

  .intro-rule {
    width: 46px;
    margin: 10px auto 10px;
  }

  .intro p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.45;
  }

  .options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .option-card {
    padding: 17px 16px;
    border-radius: 18px;
  }

  .option-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 9px;
  }

  .option-icon svg {
    width: 20px;
    height: 20px;
  }

  .option-card h2 {
    margin-bottom: 7px;
    font-size: 21px;
  }

  .option-main {
    max-width: 300px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .direct-contact {
    display: grid;
    gap: 3px;
    margin-top: 16px;
    font-size: 12px;
  }

  .direct-contact a {
    margin-left: 0;
  }

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

  .contact {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .contact > span:not(:last-child)::after,
  .contact > a:not(:last-child)::after {
    content: "";
    margin-left: 0;
  }

  .contact-address {
    display: grid;
    max-width: 170px;
    margin: 0 auto;
  }

  .contact-address span:first-child::after {
    content: "";
  }

  .contact-whatsapp {
    display: grid;
    gap: 2px;
  }

  .contact-whatsapp span:first-child {
    font-weight: 500;
  }

  .index-faq {
    padding: 54px 20px 62px;
  }

  .index-faq__header h2 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.06;
  }

  .index-faq__header p {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.45;
  }

  .index-faq__list {
    gap: 9px;
    margin-top: 28px;
  }

  .index-faq__question {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 14.5px;
  }

  .index-faq__answer {
    padding: 0 16px 17px;
  }

  .index-faq__answer p {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .index-faq__links {
    display: grid;
    gap: 8px;
  }

  .index-faq__links a {
    justify-content: center;
    min-height: 42px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    background: var(--white);
  }

  .selection-page {
    display: block;
    min-height: 100dvh;
    padding: 0;
    background: var(--white);
  }

  .selection-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100dvh;
    margin: 0;
    padding:
      max(20px, env(safe-area-inset-top))
      18px
      max(18px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .brand-logo {
    width: min(164px, 62vw);
    margin-bottom: 9px;
  }

  .intro {
    margin-bottom: 12px;
  }

  .intro-rule {
    width: 40px;
    height: 2px;
    margin: 0 auto 9px;
  }

  .intro p {
    max-width: 285px;
    font-size: 13.5px;
    line-height: 1.22;
  }

  .options {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    gap: 9px;
  }

  .option-card {
    padding: 13px;
    border-radius: 18px;
  }

  .option-icon {
    width: 31px;
    height: 31px;
    margin-bottom: 6px;
  }

  .option-icon svg {
    width: 17px;
    height: 17px;
  }

  .option-card h2 {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.05;
  }

  .option-main {
    max-width: 285px;
    font-size: 12.8px;
    line-height: 1.22;
  }

  .direct-contact {
    display: block;
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.3;
  }

  .direct-contact a {
    color: var(--gold-dark);
  }

  .contact {
    display: grid;
    gap: 3px;
    margin-top: 9px;
    font-size: 10.8px;
    line-height: 1.18;
  }

  .contact > span:not(:last-child)::after,
  .contact > a:not(:last-child)::after {
    content: "";
    margin-left: 0;
  }

  .contact-address,
  .contact-address span,
  .contact-whatsapp,
  .contact-whatsapp span {
    display: inline;
  }

  .contact-address {
    max-width: none;
  }

  .contact-address span:first-child::after {
    content: ", ";
  }

  .contact-whatsapp span:first-child::after {
    content: " ";
  }
}
