:root {
  --cream: #f8f4ee;
  --paper: #fdfcf8;
  --sage: #d4dfd0;
  --sage-deep: #9aaf96;
  --blush: #ead8dc;
  --lavender: #e6d7ea;
  --ink: #2f3a34;
  --forest: #3d4f45;
  --muted: #6b736e;
  --line: #e4ddd4;
  --bar: #2f3a34;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Nunito Sans", sans-serif; background: var(--cream); color: var(--ink); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(1140px, calc(100% - 32px)); margin-inline: auto; }
h1, h2, h3, .logo { font-family: "Cormorant Garamond", serif; font-weight: 600; }

.announce {
  background: var(--bar);
  color: #f4efe8;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.announce a:hover { text-decoration: underline; }

header { position: sticky; top: 0; z-index: 20; background: var(--paper); border-bottom: 1px solid var(--line); }
.nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 88px; gap: 20px; }
.logo { line-height: 1.05; letter-spacing: .12em; text-transform: uppercase; font-size: 20px; }
.logo small {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--sage-deep);
  margin-top: 4px;
  font-weight: 700;
}
.menu { display: flex; justify-content: center; gap: 28px; list-style: none; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.menu a { padding-bottom: 4px; }
.menu a.is-on, .menu a:hover { box-shadow: inset 0 -2px 0 var(--forest); }
.nav-cta { justify-self: end; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: #f8f4ee;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--ink); }
.btn-blush { background: var(--blush); color: var(--ink); }
.btn-blush:hover { background: #e0c8ce; }
.btn-lavender { background: var(--lavender); color: var(--ink); }
.btn-lavender:hover { background: #d9c6df; }

.hero { display: grid; grid-template-columns: 1.15fr .85fr; min-height: calc(100vh - 128px); align-items: stretch; }
.hero-photo { width: 100%; height: 100%; min-height: 520px; object-fit: cover; background: #c9b8a8; display: block; }
.hero-panel {
  background: var(--sage);
  display: grid;
  align-content: center;
  padding: 64px 10%;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}
.hero-panel h1 { font-size: clamp(40px, 5.4vw, 64px); line-height: 1.05; margin-bottom: 16px; }
.hero-panel p { max-width: 38ch; margin-bottom: 28px; color: var(--forest); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 46ch; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.1; margin-top: 8px; }

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  background: #c9b8a8;
  display: flex;
  align-items: flex-end;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(47, 58, 52, .78));
}
.tile div { position: relative; z-index: 1; padding: 22px 18px; color: #fff; width: 100%; }
.tile h3 { font-size: 28px; }
.tile a { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--blush); }

.story { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.story-photo { width: 100%; height: 100%; min-height: 420px; object-fit: cover; background: #c9b8a8; }
.story-copy {
  background: var(--paper);
  display: grid;
  align-content: center;
  padding: 64px 12%;
}
.story-copy h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin: 8px 0 16px; }
.story-copy p { color: var(--muted); max-width: 42ch; margin-bottom: 16px; }

.cater {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 480px;
}
.cater-copy {
  background: var(--blush);
  display: grid;
  align-content: center;
  padding: 64px 12%;
}
.cater-copy h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin: 8px 0 16px; }
.cater-copy p { max-width: 40ch; margin-bottom: 24px; color: var(--forest); }
.cater-photo { width: 100%; height: 100%; min-height: 380px; object-fit: cover; background: #c9b8a8; }

.hours { background: var(--sage); padding: 36px 0; }
.hours .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.hours b { display: block; font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.hours span { font-size: 14px; color: var(--forest); }

.news { background: var(--paper); }
.news-box {
  background: var(--sage);
  border-radius: 12px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}
.news-box h2 { font-size: clamp(28px, 3vw, 40px); margin: 8px 0 10px; }
.news-box p { color: var(--forest); max-width: 42ch; }
.news-box form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-box input {
  flex: 1;
  min-width: 180px;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
}
.news-box input:focus { outline: 2px solid var(--forest); }

.site-foot { background: var(--forest); color: #e8eee6; padding: 56px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 36px; padding-bottom: 40px; }
.site-foot .logo { color: #f8f4ee; }
.site-foot .logo small { color: var(--sage-deep); }
.foot-brand p { font-size: 14px; color: #c5d0c2; margin: 14px 0 18px; max-width: 34ch; }
.soc { display: flex; gap: 8px; }
.soc a { width: 40px; height: 40px; border-radius: 8px; background: #fff; color: var(--forest); display: grid; place-items: center; }
.soc a:hover { background: var(--blush); }
.soc svg { width: 18px; height: 18px; fill: currentColor; }
.site-foot h3 { color: #fff; font-size: 22px; margin-bottom: 14px; }
.site-foot ul { list-style: none; display: grid; gap: 8px; font-size: 14px; color: #c5d0c2; }
.site-foot ul a:hover { color: #fff; }
.foot-copy { border-top: 1px solid #536358; text-align: center; padding: 16px 0; font-size: 12px; color: #a8b4a6; }

.float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  z-index: 40;
}

.page-top { padding: 72px 0 28px; text-align: center; }
.page-top h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; }
.page-top p { color: var(--muted); max-width: 48ch; margin: 12px auto 0; }
.page-hero { width: 100%; height: 380px; object-fit: cover; display: block; }

.story-long { padding: 64px 0 88px; }
.story-long .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.story-long img { width: 100%; height: 520px; object-fit: cover; border-radius: 8px; }
.story-long h2 { font-size: clamp(28px, 3vw, 40px); margin: 8px 0 16px; }
.story-long p { color: var(--muted); margin-bottom: 16px; }
.timeline { display: grid; gap: 22px; margin-top: 28px; }
.timeline article { border-left: 2px solid var(--sage-deep); padding-left: 16px; }
.timeline b { display: block; font-family: "Cormorant Garamond", serif; font-size: 22px; }
.timeline span { font-size: 14px; color: var(--muted); }

.values { background: var(--paper); }
.values .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.values article { background: var(--cream); border-radius: 12px; padding: 28px 24px; }
.values h3 { font-size: 26px; margin-bottom: 8px; }
.values p { color: var(--muted); font-size: 15px; }

.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form { display: flex; flex-direction: column; gap: 14px; background: var(--paper); padding: 28px; border-radius: 12px; }
.form label { display: block; font-size: 13px; font-weight: 800; letter-spacing: .04em; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  display: block;
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--forest); border-color: var(--forest); }
.form textarea { min-height: 120px; resize: vertical; }
.form .btn { margin-top: 4px; width: fit-content; }
.mapa { width: 100%; height: 500px; border: 0; display: block; border-radius: 12px; margin-top: 48px; }

@media (max-width: 860px) {
  .menu { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .hero, .story, .cater, .tiles, .hours .wrap, .news-box, .foot-grid, .story-long .wrap, .values .grid, .contato-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel, .story-copy, .cater-copy { padding: 48px 24px; }
  .news-box { padding: 32px 22px; }
  .story-long img, .page-hero { height: 260px; }
  .tile { min-height: 240px; }
}
