/* Base tokens, global elements, and page canvas */

:root {
  --paper: #fbf3e5;
  --paper-soft: #fff8ef;
  --paper-dark: #ead6b5;
  --paper-line: #e9cfaa;
  --ink: #3a312d;
  --muted: #66554d;
  --rose: #c83f68;
  --rose-dark: #aa2c59;
  --shadow: rgba(104, 67, 40, 0.12);
  --card-shadow: 0 10px 20px rgba(90, 58, 34, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 14px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 30%),
    linear-gradient(180deg, #f6e7cf, #f2e3ca);
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
}

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

a {
  color: inherit;
}

.poster {
  position: relative;
  width: min(1400px, 100vw);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  box-shadow:
    0 18px 40px rgba(116, 80, 47, 0.12),
    inset 0 0 0 1px rgba(190, 148, 104, 0.14);
  background:
    linear-gradient(rgba(255, 252, 244, 0.24), rgba(255, 247, 233, 0.2)),
    url("../assets/bigbg.png") no-repeat center top / cover;
}

.poster::before,
.poster::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
  background-repeat: no-repeat;
  background-size: contain;
}

.poster::before {
  top: 0;
  left: 0;
  width: 360px;
  height: 220px;
  background-image: url("../assets/floral-corner-left.svg");
}

.poster::after {
  top: 0;
  right: 0;
  width: 360px;
  height: 220px;
  background-image: url("../assets/floral-corner-right.svg");
}

.top-note {
  position: relative;
  padding: 12px 28px 18px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.92), rgba(249, 235, 212, 0.78));
  border-bottom: 1px solid rgba(194, 152, 111, 0.22);
  font-size: 18px;
}

.top-note p {
  margin: 0;
}

.top-note::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 16px;
  background:
    radial-gradient(circle at 10px -1px, transparent 12px, rgba(247, 234, 214, 0.96) 12.5px) repeat-x;
  background-size: 28px 16px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 18px 42px 10px;
  padding: 8px 0 10px;
}

.brand img,
.footer-brand img {
  width: 250px;
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.main-nav a {
  padding: 0;
  background: transparent;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  box-shadow: none;
}

.hero,
.style-finder,
.boutique-intro,
.cta-banner,
.collections,
.reviews,
.stories {
  position: relative;
  z-index: 1;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--rose-dark);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Abril Fatface", serif;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.section-copy {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.3;
}

.site-footer {
  margin: 18px 42px 32px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(194, 152, 111, 0.16);
  border-radius: 28px;
  background: rgba(255, 248, 238, 0.84);
  box-shadow: var(--card-shadow);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(194, 152, 111, 0.22);
}

.footer-brand p {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-top: 22px;
}

.footer-col h3 {
  margin: 0 0 10px;
  font-family: "Abril Fatface", serif;
  font-size: 28px;
  font-weight: 400;
}

.footer-col p,
.footer-col a {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.2;
  text-decoration: none;
}
