:root {
  --brick: #3f342e;
  --ink: #241e1a;
  --muted: #6d645b;
  --paper: #f4efe6;
  --paper-deep: #ebe4d8;
  --line: rgba(138, 112, 82, 0.38);
  --bronze: #8d704f;
  --bronze-soft: #a48a6c;
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: #2b2420;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3.5rem 1.25rem;
}

::selection {
  background: #d9cbb8;
  color: var(--ink);
}

.wall {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: var(--brick);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='96'%3E%3Crect width='200' height='96' fill='%233f342e'/%3E%3Cg fill='none' stroke='%237a6c61' stroke-width='1.4'%3E%3Crect x='1' y='1' width='98' height='46'/%3E%3Crect x='101' y='1' width='98' height='46'/%3E%3Crect x='-49' y='49' width='98' height='46'/%3E%3Crect x='51' y='49' width='98' height='46'/%3E%3Crect x='151' y='49' width='98' height='46'/%3E%3C/g%3E%3Crect x='8' y='8' width='36' height='5' fill='%234c4038' opacity='0.55'/%3E%3Crect x='118' y='28' width='28' height='4' fill='%23352c27' opacity='0.4'/%3E%3Crect x='62' y='62' width='40' height='5' fill='%234c4038' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px 96px;
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(28, 22, 18, 0.18) 0%, rgba(22, 17, 14, 0.62) 72%, rgba(18, 14, 12, 0.78) 100%);
}

.sheet {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 18%),
    var(--paper);
  padding: 0.9rem;
  box-shadow:
    0 1px 0 rgba(255, 252, 246, 0.5) inset,
    0 30px 70px rgba(12, 9, 7, 0.42),
    0 8px 18px rgba(12, 9, 7, 0.2);
}

.sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 2.7rem 2.6rem 1.7rem;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(138, 112, 82, 0.22);
  pointer-events: none;
}

.brand {
  text-align: center;
}

.seal {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.25rem;
  color: var(--bronze);
}

.seal svg {
  display: block;
  width: 100%;
  height: 100%;
}

.kicker {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 400;
}

h1 {
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 7.5vw, 3.35rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  margin: 0.7rem 0 0.7rem;
  text-indent: 0.16em;
}

.tag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.55rem auto 0;
  width: min(220px, 70%);
}

.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.rule span {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  border: 1px solid var(--bronze-soft);
}

.copy {
  margin-top: 1.7rem;
}

.copy p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.72;
  color: #3a332d;
  margin-bottom: 1.05rem;
}

.copy p.close {
  font-style: italic;
  color: #4a433c;
  margin-bottom: 0;
}

.specialties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 1.85rem 0 0;
  padding: 1.4rem 0 0.2rem;
  border-top: 1px solid var(--line);
}

.specialties h2 {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.4rem;
}

.specialties p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.area {
  margin-top: 1.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.area h2 {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.7rem;
}

.area p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.72;
  color: #3a332d;
  margin-bottom: 0.95rem;
}

.area ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0;
  max-width: 34rem;
  margin: 0 auto;
}

.area li {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
}

.area li:not(:last-child)::after {
  content: "·";
  margin: 0 0.5rem;
  color: var(--bronze-soft);
}

.assurance {
  margin-top: 1.45rem;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
}

.contact {
  display: grid;
  gap: 0;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  align-items: baseline;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem 0.15rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease;
}

.row:last-child {
  border-bottom: none;
}

.row:hover .value,
.row:focus-visible .value {
  color: var(--bronze);
}

.row:focus-visible {
  outline: none;
}

.label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 400;
}

.value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

footer {
  margin-top: 1.5rem;
  text-align: center;
}

footer p {
  font-size: 0.72rem;
  color: #8d8479;
  letter-spacing: 0.08em;
}

@media (max-width: 620px) {
  body {
    padding: 1.4rem 0.85rem;
  }

  .frame {
    padding: 2rem 1.25rem 1.25rem;
  }

  .specialties {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 0.18rem;
    padding: 0.85rem 0.1rem;
  }
}
