:root {
  --ink: #3d342d;
  --muted: #756b64;
  --paper: #fbffff;
  --soft: #d9f6f5;
  --aqua: #bfeeed;
  --aqua-deep: #78c8c7;
  --blush: #e8b5bc;
  --gold: #c7a062;
  --line: rgba(125, 107, 87, 0.22);
  --shadow: 0 24px 70px rgba(61, 52, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(217, 246, 245, 0.45), rgba(251, 255, 255, 0) 380px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
}

.brand,
.nav,
.hero-actions,
.contact-details {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.84rem;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.nav {
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  background: var(--aqua-deep);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) hue-rotate(8deg) brightness(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(61, 52, 45, 0.75) 0%, rgba(61, 52, 45, 0.52) 43%, rgba(191, 238, 237, 0.18) 100%),
    linear-gradient(0deg, rgba(61, 52, 45, 0.3), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(191, 238, 237, 0.28), rgba(232, 181, 188, 0.12) 48%, rgba(199, 160, 98, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(840px, 100%);
  padding: 130px clamp(18px, 5vw, 64px) 90px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-weight: 850;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(125, 107, 87, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.intro,
.services,
.looks,
.feature-band,
.occasions,
.details,
.contact {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 64px);
}

.intro,
.contact,
.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.intro {
  background: var(--paper);
}

.intro p,
.feature-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 30px;
}

.services {
  background: var(--soft);
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.package,
.booking-form {
  border: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.82);
  box-shadow: var(--shadow);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 5vw, 48px) 0;
}

.service-item h3 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.service-item p,
.package p {
  color: var(--muted);
}

.service-item p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.looks {
  background: var(--paper);
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.look-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 34px);
}

.look-card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(199, 160, 98, 0.55);
  border-radius: 999px;
}

.look-card::after {
  content: "";
  position: absolute;
  top: 52px;
  left: 28px;
  width: 56%;
  border-top: 1px solid rgba(199, 160, 98, 0.42);
}

.look-card span,
.look-card h3,
.look-card p {
  position: relative;
}

.look-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.look-card h3 {
  max-width: 330px;
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1;
}

.look-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.aqua-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(191, 238, 237, 0.8));
}

.blush-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(232, 181, 188, 0.58));
}

.gold-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(199, 160, 98, 0.34));
}

.feature-band {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(232, 181, 188, 0.28)),
    var(--aqua);
}

.feature-band .section-kicker {
  color: var(--gold);
}

.feature-copy p {
  color: var(--muted);
}

.package-list {
  display: grid;
  gap: 14px;
}

.package {
  padding: 24px;
  color: var(--ink);
}

.occasions {
  background: var(--paper);
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.occasion-list span {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 16px;
  color: var(--muted);
  font-weight: 750;
}

.details {
  background:
    linear-gradient(180deg, rgba(217, 246, 245, 0.42), rgba(255, 255, 255, 0.85)),
    var(--paper);
}

.detail-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.detail-steps article {
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}

.detail-steps article:last-child {
  border-right: 0;
}

.detail-steps h3 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 500;
}

.detail-steps p {
  color: var(--muted);
}

.contact {
  background: var(--soft);
}

.contact-details {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.site-footer span:last-child {
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  .brand span:last-child {
    max-width: 168px;
    line-height: 1.1;
  }

  .nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(61, 52, 45, 0.78) 0%, rgba(61, 52, 45, 0.54) 62%, rgba(191, 238, 237, 0.2) 100%),
      linear-gradient(135deg, rgba(191, 238, 237, 0.24), rgba(232, 181, 188, 0.16));
  }

  .hero-content {
    align-self: end;
    padding-top: 120px;
  }

  .intro,
  .feature-band,
  .contact,
  .service-item,
  .look-grid,
  .detail-steps,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .detail-steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-steps article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .nav a:nth-child(2),
  .nav a:nth-child(3) {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.1rem);
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
