:root {
  --ink: #171412;
  --charcoal: #25201e;
  --cream: #fff8ef;
  --ivory: #f7efe7;
  --rose: #ff4f9b;
  --blush: #ffd6e1;
  --gold: #ffc833;
  --mint: #32e0bf;
  --sky: #42cfff;
  --lilac: #9f7dff;
  --shadow: 0 24px 70px rgba(31, 20, 16, 0.22);
  --glow-shadow: 0 30px 90px rgba(255, 79, 155, 0.22), 0 24px 70px rgba(50, 224, 191, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 79, 155, 0.12), transparent 30%),
    linear-gradient(245deg, rgba(50, 224, 191, 0.14), transparent 34%),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.site-glow {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    conic-gradient(from 140deg at 50% 10%, rgba(255, 79, 155, 0.18), rgba(255, 200, 51, 0.16), rgba(50, 224, 191, 0.16), rgba(159, 125, 255, 0.12), rgba(255, 79, 155, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0));
  opacity: 0.75;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body::selection {
  color: #fff;
  background: var(--rose);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 248, 239, 0.92);
  box-shadow: 0 12px 30px rgba(32, 20, 16, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
  background:
    radial-gradient(circle at 32% 32%, #fff 0 13%, transparent 14%),
    linear-gradient(135deg, var(--rose), var(--gold) 58%, var(--mint));
  clip-path: polygon(50% 93%, 7% 45%, 7% 22%, 27% 6%, 50% 20%, 73% 6%, 93% 22%, 93% 45%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 10px 26px rgba(231, 93, 135, 0.36);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-slide,
.hero-scrim,
.hero-color {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -5;
  background: #ffe8ef;
  transition: transform 220ms ease-out;
  will-change: transform;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  animation: heroSlide 18s infinite;
}

.hero-slide-one {
  opacity: 1;
}

.hero-slide-two {
  animation-delay: 6s;
}

.hero-slide-three {
  animation-delay: 12s;
  object-position: 70% center;
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(31, 12, 24, 0.7) 0%, rgba(31, 12, 24, 0.44) 38%, rgba(255, 255, 255, 0.02) 76%),
    linear-gradient(180deg, rgba(255, 118, 171, 0.12), rgba(20, 14, 12, 0.18));
}

.hero-color {
  z-index: -2;
  mix-blend-mode: screen;
  opacity: 0.76;
  pointer-events: none;
  animation: colorDrift 12s ease-in-out infinite alternate;
}

.hero-color-one {
  background: radial-gradient(circle at 16% 32%, rgba(255, 79, 155, 0.86), transparent 34%);
}

.hero-color-two {
  background: radial-gradient(circle at 82% 22%, rgba(50, 224, 191, 0.62), transparent 36%),
    radial-gradient(circle at 58% 90%, rgba(255, 200, 51, 0.68), transparent 40%);
}

.hero-content {
  width: min(820px, calc(100% - 36px));
  padding: clamp(128px, 23vh, 190px) 0 clamp(124px, 18vh, 176px);
  margin-left: clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #ffe5ef;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #a6375b;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 12vw, 10.8rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: lowercase;
  text-shadow: 0 12px 34px rgba(50, 16, 26, 0.44);
}

.hero-copy {
  width: min(600px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-content .eyebrow,
.hero-copy {
  text-shadow: 0 4px 16px rgba(50, 16, 26, 0.38);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #171412;
  background: linear-gradient(135deg, #fff6c7, #f2bd45 38%, #ff86aa 72%, #62ddff);
  background-size: 180% 180%;
  box-shadow: 0 16px 36px rgba(231, 93, 135, 0.34);
  animation: buttonGlow 5s ease-in-out infinite;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.price-ribbon {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(44px, 9vh, 92px);
  width: min(190px, 36vw);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: floatCard 5.8s ease-in-out infinite;
}

.price-ribbon-top,
.price-ribbon span:last-child {
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-ribbon strong {
  display: block;
  margin: 3px 0 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 0.95;
}

.sparkle-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.sparkle-field span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  opacity: 0.72;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.88));
  animation: sparkleFloat 7s ease-in-out infinite;
}

.sparkle-field span:nth-child(1) {
  left: 11%;
  top: 21%;
}

.sparkle-field span:nth-child(2) {
  left: 32%;
  top: 72%;
  animation-delay: 1.2s;
}

.sparkle-field span:nth-child(3) {
  left: 55%;
  top: 18%;
  animation-delay: 2.4s;
}

.sparkle-field span:nth-child(4) {
  left: 74%;
  top: 62%;
  animation-delay: 3.6s;
}

.sparkle-field span:nth-child(5) {
  left: 88%;
  top: 26%;
  animation-delay: 4.8s;
}

.sparkle-field span:nth-child(6) {
  left: 45%;
  top: 42%;
  animation-delay: 5.4s;
}

.hero-showreel {
  position: absolute;
  right: clamp(22px, 5vw, 74px);
  top: clamp(96px, 14vh, 154px);
  width: min(330px, 28vw);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--glow-shadow);
  backdrop-filter: blur(18px);
}

.showreel-screen {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #fff;
}

.showreel-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: showreelSwap 9s infinite;
}

.showreel-screen img:nth-child(2) {
  animation-delay: 3s;
}

.showreel-screen img:nth-child(3) {
  animation-delay: 6s;
}

.showreel-meta {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  color: #171412;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 230, 239, 0.92)),
    #fff;
}

.showreel-meta span {
  color: #9a2754;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showreel-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(38, 30, 26, 0.14);
  background: #fff;
}

.intro-stat {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px clamp(20px, 5vw, 54px);
  border-right: 1px solid rgba(38, 30, 26, 0.12);
}

.intro-stat:last-child {
  border-right: 0;
}

.intro-stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.intro-stat span {
  color: rgba(23, 20, 18, 0.66);
  font-weight: 750;
}

.section,
.motion-section,
.gallery-section,
.price-section,
.contact-section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.motion-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff9f5, #ffeaf4 42%, #eafffb 100%);
}

.motion-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 79, 155, 0.08) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(50, 224, 191, 0.07) 0 1px, transparent 1px 78px);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.motion-copy,
.motion-player {
  position: relative;
  z-index: 1;
}

.motion-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.92;
}

.motion-copy p:not(.eyebrow) {
  width: min(560px, 100%);
  color: rgba(23, 20, 18, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.motion-player {
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 232, 242, 0.78)),
    #fff;
  box-shadow: var(--glow-shadow);
  transform: rotate(1.2deg);
}

.motion-screen {
  position: relative;
  min-height: clamp(360px, 50vw, 590px);
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
}

.motion-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  animation: cinematicFrame 12s infinite;
}

.motion-frame-two {
  animation-delay: 4s;
}

.motion-frame-three {
  animation-delay: 8s;
}

.motion-shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.52) 46%, transparent 62%);
  transform: translateX(-74%) rotate(7deg);
  animation: sweepShine 4.8s ease-in-out infinite;
}

.motion-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.motion-controls span {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.1);
}

.motion-controls span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--mint));
  transform: translateX(-100%);
  animation: controlFill 12s infinite;
}

.motion-controls span:nth-child(2)::before {
  animation-delay: 4s;
}

.motion-controls span:nth-child(3)::before {
  animation-delay: 8s;
}

.offer-section,
.areas-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.offer-copy h2,
.areas-copy h2,
.section-heading h2,
.price-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.offer-copy p,
.areas-copy p,
.price-copy p,
.contact-copy p {
  color: rgba(23, 20, 18, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.offer-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 79, 155, 0.12), transparent 36%),
    linear-gradient(235deg, rgba(50, 224, 191, 0.15), transparent 38%),
    #fffaf5;
}

.offer-section::after {
  content: "tippies with heart";
  position: absolute;
  right: -2vw;
  bottom: -0.12em;
  color: rgba(255, 79, 155, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}

.offer-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 42px;
  border: 1px solid rgba(255, 79, 155, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 199, 0.34)),
    #fff;
  box-shadow: 0 16px 34px rgba(38, 24, 18, 0.09);
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.offer-list li:hover {
  border-color: rgba(255, 79, 155, 0.38);
  box-shadow: var(--glow-shadow);
  transform: translateY(-4px);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--gold), var(--mint));
}

.gallery-section {
  position: relative;
  background:
    linear-gradient(180deg, #fff9f5 0%, #fff0f8 46%, #edfff9 100%),
    #fff;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, 0.56) 18% 20%, transparent 20% 100%),
    linear-gradient(60deg, transparent 0 72%, rgba(255, 255, 255, 0.46) 72% 74%, transparent 74% 100%);
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.gallery-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  grid-template-rows: repeat(2, minmax(245px, 1fr));
  gap: 18px;
  perspective: 1400px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 8px solid #fff;
  border-radius: var(--radius);
  background: #fff;
  cursor: zoom-in;
  box-shadow: 0 28px 70px rgba(35, 22, 17, 0.2);
  transform: rotate(0deg);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.gallery-item.feature {
  grid-row: 1 / span 2;
  transform: rotate(-1.2deg);
}

.gallery-item.portrait {
  transform: rotate(1.3deg);
}

.gallery-item.room {
  transform: rotate(-0.8deg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) brightness(1.08) contrast(1.02);
  transition: transform 380ms ease, filter 380ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(231, 93, 135, 0.2), transparent 45%, rgba(112, 216, 196, 0.18));
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #171412;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(22, 16, 14, 0.16);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.3) brightness(1.14) contrast(1.04);
}

.gallery-item:hover {
  box-shadow: 0 36px 90px rgba(255, 79, 155, 0.2), 0 30px 70px rgba(35, 22, 17, 0.22);
  transform: translateY(-8px) rotate(0deg);
}

.gallery-item:hover::after {
  opacity: 1;
}

.price-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 470px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(115deg, rgba(255, 214, 225, 0.82), rgba(255, 248, 239, 0.72) 42%, rgba(112, 216, 196, 0.48)),
    #fff;
}

.price-section::before {
  content: "£50";
  position: absolute;
  right: 52vw;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(9rem, 24vw, 23rem);
  line-height: 0.8;
  pointer-events: none;
}

.price-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 79, 155, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.96), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(50, 224, 191, 0.28), transparent 32%),
    linear-gradient(135deg, #fff7cf 0%, #ffe0ed 42%, #dffff8 100%);
  background-size: 100% 100%, 100% 100%, 180% 180%;
  box-shadow: var(--glow-shadow);
  animation: panelGradient 8s ease-in-out infinite;
}

.price-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.price-panel::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 79, 155, 0.22), transparent 68%);
  pointer-events: none;
}

.price-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #8a214f;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  align-items: start;
  gap: 10px;
  margin-top: 20px;
}

.price-main strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 10vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  color: #171412;
  text-shadow: 0 8px 0 rgba(255, 255, 255, 0.62);
}

.price-main span:last-child {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #8a214f;
  background: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 3vw, 1.45rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-note {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(23, 20, 18, 0.68);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.55;
}

.included-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 24px 0 0;
  margin: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 12px 8px 36px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  color: #31221f;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  left: 13px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--rose));
  transform: translateY(-50%);
}

.areas-section {
  position: relative;
  overflow: hidden;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 214, 225, 0.62), rgba(255, 255, 255, 0.78) 48%, rgba(50, 224, 191, 0.24)),
    #fff;
}

.areas-section::before {
  content: "local";
  position: absolute;
  left: -0.08em;
  bottom: -0.2em;
  color: rgba(50, 224, 191, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 0.8;
  pointer-events: none;
}

.areas-copy,
.area-list {
  position: relative;
  z-index: 1;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 12px 8px 30px;
  border: 1px solid rgba(255, 79, 155, 0.16);
  border-radius: 999px;
  color: rgba(23, 20, 18, 0.76);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(38, 24, 18, 0.06);
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--mint));
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background:
    linear-gradient(120deg, #f4f8f7, #fff7fb 48%, #edfff9),
    #f4f8f7;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 79, 155, 0.08) 0 1px, transparent 1px 92px),
    linear-gradient(0deg, rgba(50, 224, 191, 0.08) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

.contact-copy {
  position: sticky;
  top: 106px;
  z-index: 1;
}

.contact-copy img {
  width: min(380px, 100%);
  height: 460px;
  margin-top: 34px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 242, 247, 0.92)),
    #fff;
  box-shadow: var(--glow-shadow);
  backdrop-filter: blur(16px);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(23, 20, 18, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(38, 30, 26, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 250, 245, 0.88);
  outline: none;
  transition: border 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(231, 93, 135, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(23, 20, 18, 0.7);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 79, 155, 0.18), rgba(50, 224, 191, 0.08)),
    #171412;
}

.site-footer span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.site-footer a {
  color: #ffd16f;
}

.lightbox {
  width: min(1040px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(12, 9, 8, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #171412;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

@keyframes heroSlide {
  0%,
  28% {
    opacity: 1;
    transform: scale(1.03);
  }

  36%,
  92% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes colorDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@keyframes sparkleFloat {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0) scale(0.8) rotate(0deg);
  }

  45% {
    opacity: 0.9;
    transform: translateY(-26px) scale(1.45) rotate(22deg);
  }
}

@keyframes showreelSwap {
  0%,
  28% {
    opacity: 1;
    transform: scale(1.02);
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes cinematicFrame {
  0%,
  29% {
    opacity: 1;
    transform: scale(1.02);
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes sweepShine {
  0%,
  45% {
    transform: translateX(-76%) rotate(7deg);
  }

  72%,
  100% {
    transform: translateX(76%) rotate(7deg);
  }
}

@keyframes controlFill {
  0% {
    transform: translateX(-100%);
  }

  26% {
    transform: translateX(0);
  }

  33%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.25;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 18px);
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes panelGradient {
  0%,
  100% {
    background-position: center, center, 0% 50%;
  }

  50% {
    background-position: center, center, 100% 50%;
  }
}

@media (max-width: 940px) {
  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
    margin: 0 auto;
    padding-top: 132px;
  }

  .hero-showreel {
    display: none;
  }

  .price-ribbon {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -58px 18px 32px auto;
  }

  .offer-section,
  .motion-section,
  .areas-section,
  .price-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .motion-player {
    transform: rotate(0deg);
  }

  .contact-copy {
    position: static;
  }

  .contact-copy img {
    width: 100%;
    height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item.feature {
    min-height: 340px;
  }

  .gallery-item.feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.72rem;
  }

  .brand {
    max-width: 172px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 124px;
    padding-bottom: 108px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 20vw, 5.7rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .intro-stat {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(38, 30, 26, 0.12);
  }

  .offer-list,
  .area-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item,
  .gallery-item.feature,
  .gallery-item.portrait,
  .gallery-item.room {
    width: 100%;
    min-height: 0;
    height: 320px;
    margin-bottom: 14px;
    transform: none;
  }

  .motion-screen {
    min-height: 360px;
  }

  .price-panel {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
