/* ============================================
   Ateliê Tamiris Galvão — Design tokens
   ============================================ */
:root{
  --bg-1: #F8F1E5;
  --bg-2: #EEE0C8;
  --panel: #FCF8F0;
  --panel-hover: #FFFDF9;
  --gold: #B9975D;
  --gold-deep: #8C6A3B;
  --gold-light: #E7D3A6;
  --ink: #241E17;
  --ink-soft: #6E5F48;
  --ink-faint: #9A8A6F;
  --line: rgba(185,151,93,0.30);
  --shadow: 0 14px 34px -18px rgba(120,90,45,0.38);
  --shadow-soft: 0 8px 22px -14px rgba(120,90,45,0.30);
  --radius-lg: 28px;
  --radius-md: 20px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   Page backdrop
   ============================================ */
.page{
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(120% 60% at 50% -10%, #FDF8EE 0%, var(--bg-1) 55%, var(--bg-2) 100%);
  padding: 0 0 56px;
}

.glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.glow--top{
  width: 420px; height: 420px;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(233,205,150,0.55) 0%, rgba(233,205,150,0) 70%);
}
.glow--bottom{
  width: 380px; height: 380px;
  bottom: -140px; right: -80px;
  background: radial-gradient(circle, rgba(185,151,93,0.28) 0%, rgba(185,151,93,0) 70%);
}

/* ============================================
   Shell
   ============================================ */
.card-shell{
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0 auto;
  padding: 48px 22px 0;
}

/* ============================================
   Hero
   ============================================ */
.hero{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__frame{
  position: relative;
  width: 62%;
  max-width: 260px;
  margin-bottom: 22px;
}

.hero__photo{
  width: 100%;
  aspect-ratio: 3 / 3.55;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 52% 52% 8px 8px / 34% 34% 8px 8px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.hero__ring{
  position: absolute;
  inset: -10px;
  border-radius: 55% 55% 14px 14px / 36% 36% 14px 14px;
  border: 1px solid var(--line);
  z-index: 0;
}

.hero__badge{
  position: absolute;
  bottom: -18px;
  right: -14px;
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--panel);
  padding: 6px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  z-index: 2;
}

.hero__name{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(30px, 8vw, 38px);
  letter-spacing: 0.3px;
  margin: 4px 0 6px;
  color: var(--ink);
}

.hero__subtitle{
  font-size: 12.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 22px;
  font-weight: 500;
}

.divider{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 26px;
}
.divider span{
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}
.divider i{
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================
   Social row
   ============================================ */
.social-row{
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.social-btn{
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--gold-deep);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.social-btn svg{ width: 19px; height: 19px; }
.social-btn:hover{
  transform: translateY(-3px);
  background: var(--gold-light);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.social-btn:active{ transform: translateY(-1px) scale(.97); }

/* ============================================
   CTA
   ============================================ */
.cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: #2A2013;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  box-shadow: 0 16px 30px -14px rgba(140,106,59,0.55);
  margin-bottom: 42px;
  transition: transform .4s var(--ease), background-position .6s var(--ease), box-shadow .4s var(--ease);
}
.cta svg{ width: 18px; height: 18px; }
.cta:hover{
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 20px 36px -14px rgba(140,106,59,0.62);
}
.cta:active{ transform: translateY(-1px) scale(.98); }

/* ============================================
   Link cards
   ============================================ */
.links{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.link-card{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.link-card__icon{
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #2A2013;
}
.link-card__icon svg{ width: 19px; height: 19px; }

.link-card__text{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-card__title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}

.link-card__desc{
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 300;
}

.link-card__chevron{
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 12px;
  color: var(--gold);
  transition: transform .35s var(--ease);
}

.link-card:hover{
  transform: translateY(-4px);
  background: var(--panel-hover);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.link-card:hover .link-card__chevron{ transform: translateX(4px); }
.link-card:active{ transform: translateY(-1px) scale(.99); }

/* ============================================
   Ambiente
   ============================================ */
.ambiente{
  text-align: center;
  margin-bottom: 44px;
}
.ambiente img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.ambiente p{
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================
   Contact / footer
   ============================================ */
.contact{
  text-align: center;
}
.contact address{
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.contact__whats{
  margin: 0 0 22px;
}
.contact__whats a{
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.contact__whats a:hover{
  color: var(--ink);
  border-color: var(--gold);
}
.copyright{
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--ink-faint);
}

/* ============================================
   Reveal animation
   ============================================ */
[data-reveal]{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

.hero[data-reveal].is-visible{ transition-delay: .05s; }
.links .link-card[data-reveal]{ transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation: none !important; transition: none !important; }
  [data-reveal]{ opacity: 1; transform: none; }
}

/* ============================================
   Focus visibility
   ============================================ */
a:focus-visible,
.social-btn:focus-visible,
.link-card:focus-visible,
.cta:focus-visible{
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 480px){
  .card-shell{ padding-top: 60px; }
}

@media (min-width: 600px){
  .page{
    padding-bottom: 80px;
  }
  .card-shell{
    max-width: 460px;
    padding: 72px 26px 0;
  }
}
