/**
 * Layout: header/nav, footer, hero, and page-section scaffolding used across most pages.
 */

.nav {
  height: 76px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255,250,244,.96);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.04em;
  font-size: 19px;
}

.brand>span:last-child>span {
  color: var(--saffron);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  font-family: serif;
  font-size: 17px;
}

.nav nav {
  display: flex;
  gap: 30px;
  color: #5e5550;
  font-size: 14px;
}

.nav nav a:hover,
.text-link:hover {
  color: var(--saffron);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 12px;
  border-radius: 99px;
}

.avatar svg {
  width: 16px;
}

.menu {
  display: none;
  border: 0;
  background: none;
}

.hero {
  min-height: 640px;
  padding: 72px 7vw 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.hero h1,
.how h1,
.explore h1,
.dashboard h1,
.auth h1,
.detail h1,
.success h1 {
  font-family: 'Playfair Display',serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
  margin: 0;
  font-size: clamp(48px,6vw,78px);
}

.hero-copy>p {
  font-size: 18px;
  line-height: 1.65;
  color: #645b55;
  max-width: 580px;
  margin: 24px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 42px;
  color: #5f5751;
  font-size: 12px;
}

.trust-row span {
  display: flex;
  gap: 6px;
  align-items: center;
}

.trust-row svg {
  width: 16px;
  color: var(--green);
}

.hero-art {
  height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}

.sun {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: #e9c79d;
  opacity: .55;
  top: 20px;
}

.arch {
  width: 300px;
  height: 420px;
  background: #a64f2f;
  border-radius: 150px 150px 0 0;
  position: relative;
  box-shadow: 0 30px 80px rgba(77,45,33,.2);
  overflow: hidden;
}

.arch-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(140,64,36,.3),rgba(90,40,24,.78));
}

.arch-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Playfair Display';
  font-size: 29px;
  z-index: 1;
}

.arch-inner b {
  font-size: 47px;
}

.floral {
  position: absolute;
  color: #8e432a;
  font-size: 60px;
}

.f2 {
  right: 4%;
  bottom: 85px;
}

.hero-medallion {
  position: absolute;
  top: 55px;
  left: 5%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 15px 35px rgba(57,40,30,.25);
  z-index: 2;
}

.hero-medallion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card {
  position: absolute;
  right: 1%;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 17px 20px;
  display: grid;
  gap: 4px;
  box-shadow: 0 15px 40px rgba(57,40,30,.1);
  min-width: 190px;
}

.hero-card span,
.hero-card small {
  font-size: 11px;
  color: var(--muted);
}

.hero-card b {
  font-size: 14px;
}

.section {
  padding: 95px 7vw;
}

.section.cream {
  background: #f7f0e6;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 40px;
}

.section-head h2,
.st h2 {
  font-family: 'Playfair Display';
  font-weight: 500;
  font-size: 43px;
  letter-spacing: -.04em;
  margin: 0;
}

.section-head p,
.explore>div>p {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.feature {
  padding: 28px 0;
  border-top: 1px solid #d9cfc5;
}

.feature h3 {
  font-family: 'Playfair Display';
  font-size: 24px;
  margin: 0 0 10px;
}

.feature p,
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #eee2d4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(to top,rgba(20,12,8,.75),transparent 75%);
  color: #fff;
  font-family: 'Playfair Display';
  font-size: 14px;
  letter-spacing: .02em;
  margin: 0;
}

.dark-band {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 105px 10vw;
}

.quote {
  font-family: 'Playfair Display';
  font-size: clamp(31px,4vw,52px);
  line-height: 1.15;
  max-width: 850px;
  margin: auto;
}

.quote i {
  color: #e7a06f;
}

.quote-by {
  color: #b8aaa1;
  font-size: 12px;
  letter-spacing: .1em;
  margin-top: 22px;
}

.how {
  background: var(--cream);
  min-height: 700px;
}

.how-hero {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 80px;
}

.how-hero p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 25px auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.step {
  border-top: 1px solid #d9cfc5;
  padding-top: 18px;
}

.step>span {
  font-size: 11px;
  color: var(--saffron);
  font-weight: 700;
}

.step .icon-circle {
  margin-top: 20px;
}

.step h3 {
  font-family: 'Playfair Display';
  font-size: 26px;
  margin: 0 0 8px;
}

.policy-note {
  margin: 80px auto 0;
  max-width: 750px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 15px;
}

.policy-note p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 6px 0 0;
}

footer {
  padding: 60px 7vw;
  background: #241e1b;
  color: #d5c9c0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

footer .brand {
  color: #fff;
}

footer p {
  font-size: 12px;
  line-height: 1.6;
  max-width: 300px;
  color: #9e9189;
}

footer b {
  display: block;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}

footer a,
footer span {
  display: block;
  font-size: 11px;
  margin: 10px 0;
  color: #b6aaa2;
}
