:root {
  --ivory: #fff8eb;
  --marble: #f4ead8;
  --sand: #d7bc8c;
  --gold: #c99b45;
  --deep-gold: #9c7130;
  --olive: #677052;
  --ink: #2b2118;
  --soft-ink: #6d5a46;
  --glass: rgba(255, 248, 235, 0.76);
  --line: rgba(201, 155, 69, 0.32);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 155, 69, .22), transparent 38%),
    radial-gradient(circle at bottom right, rgba(103, 112, 82, .22), transparent 35%),
    linear-gradient(145deg, #fff9ef 0%, #efe0c5 52%, #d8bf91 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(30deg, rgba(156, 113, 48, .28) 12%, transparent 12.5%, transparent 87%, rgba(156, 113, 48, .28) 87.5%, rgba(156, 113, 48, .28)),
    linear-gradient(150deg, rgba(156, 113, 48, .28) 12%, transparent 12.5%, transparent 87%, rgba(156, 113, 48, .28) 87.5%, rgba(156, 113, 48, .28));
  background-size: 62px 108px;
}

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 18px 14px 28px;
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 250, 240, .9), rgba(255, 248, 235, .68));
  box-shadow: 0 28px 80px rgba(68, 46, 20, .22), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(18px);
}

.hero-image-wrap {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: linear-gradient(135deg, #eee1ca, #c9ad7e);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(43, 33, 24, .12) 60%, rgba(255, 248, 235, .96) 100%);
}

.image-shine {
  position: absolute;
  top: -70%;
  left: -45%;
  width: 40%;
  height: 220%;
  transform: rotate(28deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  animation: shine 5.8s ease-in-out infinite;
}

.content {
  position: relative;
  padding: 0 22px 28px;
  margin-top: -58px;
  text-align: center;
}

.logo-orb {
  width: 112px;
  height: 112px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #fffdf7 0%, #f1dfbd 68%, #c99b45 100%);
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: 0 14px 36px rgba(86, 57, 22, .24), 0 0 0 9px rgba(255,248,235,.5);
}

.logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.eyebrow {
  margin: 10px 0 4px;
  color: var(--deep-gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.2rem, 10vw, 3.35rem);
  line-height: .95;
  color: var(--ink);
  letter-spacing: -.04em;
}

.subtitle {
  max-width: 390px;
  margin: 14px auto 22px;
  color: var(--soft-ink);
  line-height: 1.55;
  font-size: .98rem;
}

.links {
  display: grid;
  gap: 12px;
}

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  text-align: left;
  color: var(--ink);
  text-decoration: none;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 245, .72);
  box-shadow: 0 12px 25px rgba(78, 52, 22, .09);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.link-card::after {
  content: "›";
  margin-left: auto;
  color: var(--deep-gold);
  font-size: 1.8rem;
  line-height: 1;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(201, 155, 69, .7);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 34px rgba(78, 52, 22, .16);
  outline: none;
}

.link-card.primary {
  color: #fffaf0;
  background: linear-gradient(135deg, #c99b45, #9c7130 56%, #68512a);
  border-color: rgba(255, 241, 198, .52);
}

.link-card.primary small,
.link-card.primary::after { color: rgba(255, 250, 240, .78); }

.icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 248, 235, .74);
  color: var(--deep-gold);
  font-size: 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(201,155,69,.25);
}

.link-card.primary .icon {
  background: rgba(255, 248, 235, .18);
  color: #fff8eb;
}

.link-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.link-card small {
  display: block;
  color: var(--soft-ink);
  line-height: 1.35;
}

.address {
  margin: 18px 4px 0;
  padding: 14px 12px 0;
  border-top: 1px solid rgba(201,155,69,.28);
  font-style: normal;
  color: var(--soft-ink);
  font-size: .86rem;
  line-height: 1.48;
}

.greek-border {
  height: 14px;
  background:
    linear-gradient(90deg, var(--gold) 50%, transparent 0) 0 0 / 24px 4px repeat-x,
    linear-gradient(90deg, transparent 50%, var(--gold) 0) 0 10px / 24px 4px repeat-x,
    linear-gradient(90deg, var(--gold) 4px, transparent 0 calc(100% - 4px), var(--gold) 0) 0 0 / 24px 14px repeat-x;
  opacity: .55;
}

.greek-border.bottom { transform: rotate(180deg); }

@keyframes shine {
  0%, 55% { left: -48%; opacity: 0; }
  65% { opacity: 1; }
  100% { left: 115%; opacity: 0; }
}

@media (min-width: 760px) {
  .page-shell { width: min(100%, 920px); padding: 34px 22px; }
  .hero-card { display: grid; grid-template-columns: .92fr 1fr; min-height: 620px; }
  .greek-border { grid-column: 1 / -1; }
  .hero-image-wrap { height: 100%; min-height: 560px; grid-row: 2; }
  .content { grid-row: 2; margin: 0; padding: 42px 42px 34px; align-self: center; }
  .hero-image-wrap::after { background: linear-gradient(to right, transparent 45%, rgba(255, 248, 235, .92) 100%); }
  .logo-orb { width: 126px; height: 126px; }
  .logo { width: 92px; height: 92px; }
}

@media (max-width: 380px) {
  .page-shell { padding: 10px; }
  .hero-card { border-radius: 28px; }
  .hero-image-wrap { height: 212px; }
  .content { padding-inline: 16px; }
  .link-card { padding: 13px; border-radius: 19px; }
}
