
:root{
  --ink:#202020;
  --muted:#66615a;
  --gold:#bd8e43;
  --gold2:#d3aa66;
  --paper:#f6f0e6;
  --cream:#fbf8f1;
  --dark:#212121;
}
*{box-sizing:border-box}
html,body{margin:0}
body{
  min-height:100vh;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:var(--cream);
}
.site-header{
  width:min(1320px,92vw);
  margin:0 auto;
  padding:30px 0 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.brand{
  color:var(--ink);
  text-decoration:none;
  font-size:clamp(1.8rem,3vw,2.45rem);
  font-weight:750;
  letter-spacing:-.055em;
}
.brand strong{color:var(--gold);font-weight:650}
.eyebrow{
  font-size:.76rem;
  letter-spacing:.26em;
  font-weight:650;
  white-space:nowrap;
}
.eyebrow i{font-style:normal;color:#aaa;margin:0 .6em}

.hero{
  width:min(1320px,92vw);
  margin:0 auto;
  min-height:610px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  overflow:hidden;
  border-radius:0 0 30px 30px;
  background:
    radial-gradient(circle at 35% 18%,rgba(255,255,255,.9),transparent 42%),
    linear-gradient(120deg,#fffdf8 0%,#f3ecdf 100%);
  box-shadow:0 20px 60px rgba(56,45,32,.08);
}
.hero-copy{
  padding:80px 54px 70px 72px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
h1{
  margin:0 0 28px;
  font-size:clamp(3rem,5.5vw,5.4rem);
  line-height:.92;
  letter-spacing:-.055em;
  font-weight:420;
}
h1 span{
  color:var(--gold);
  font-weight:620;
}
.lead{
  max-width:680px;
  margin:0 0 22px;
  font-size:clamp(1.15rem,1.8vw,1.55rem);
  line-height:1.45;
}
.sub{
  margin:0 0 34px;
  font-size:clamp(1rem,1.5vw,1.28rem);
}
.coming{
  width:max-content;
  padding:18px 34px;
  border-radius:999px;
  background:linear-gradient(100deg,var(--gold),var(--gold2));
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:.84rem;
  font-weight:700;
  box-shadow:0 10px 30px rgba(189,142,67,.2);
}
.rule{width:58px;height:1px;background:#555;margin:38px 0 18px 72px}
.tagline{
  margin:0;
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:.72rem;
  font-weight:620;
}
.hero-photo{
  min-height:610px;
  background-image:
    linear-gradient(90deg,rgba(246,240,230,.22),rgba(246,240,230,0) 18%),
    url("assets/cafe-hero.webp");
  background-size:cover;
  background-position:center;
}

.features{
  width:min(1320px,92vw);
  margin:22px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fffdf9;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(44,35,24,.06);
}
.features article{
  position:relative;
  text-align:center;
  padding:30px 24px 28px;
}
.features article+article:before{
  content:"";
  position:absolute;
  left:0;top:24%;bottom:24%;
  width:1px;background:#e3ddd2;
}
.icon{
  width:56px;height:56px;
  margin:0 auto 14px;
  border-radius:50%;
  background:#f1e9dc;
  display:grid;place-items:center;
  font-size:1.55rem;
}
.phone-icon:before{
  content:"";
  width:17px;height:29px;
  border:2px solid var(--ink);
  border-radius:4px;
}
.features h2{
  margin:0 0 8px;
  font-size:.84rem;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.features p{margin:0;color:#68635d;font-size:.94rem}

footer{
  margin-top:34px;
  background:var(--dark);
  color:#eee;
  padding:36px max(6vw,32px);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:30px;
}
.footer-brand{font-size:1.35rem;font-weight:700;letter-spacing:-.03em}
.footer-brand strong{color:var(--gold)}
.gold-line{width:38px;height:2px;background:var(--gold);margin-top:16px}
.footer-copy{text-align:right;color:#bfbfbf;font-size:.86rem;line-height:1.5}
.footer-copy p{margin:0}

@media(max-width:900px){
  .eyebrow{display:none}
  .hero{grid-template-columns:1fr}
  .hero-copy{padding:64px 32px 52px}
  .hero-photo{min-height:380px}
  .features{grid-template-columns:1fr 1fr}
  .features article:nth-child(3):before{display:none}
}
@media(max-width:560px){
  .site-header{padding-top:22px}
  .hero{width:94vw}
  .hero-copy{padding:48px 24px 42px}
  h1{font-size:3.3rem}
  .lead{font-size:1.05rem}
  .rule{margin-left:0}
  .tagline{letter-spacing:.19em;line-height:1.5}
  .hero-photo{min-height:280px}
  .features{width:94vw;grid-template-columns:1fr}
  .features article+article:before{top:0;left:12%;right:12%;bottom:auto;width:auto;height:1px}
  footer{flex-direction:column}
  .footer-copy{text-align:left}
}
