/* ==================================================
   V.K. FILMS PRODUCTION
   Cinematic photography website
================================================== */

:root {
  --bg: #111310;
  --bg-soft: #191d16;
  --panel: #1d221a;

  --cream: #edeae1;
  --gold: #c7ae81;
  --gold-light: #e1cba5;
  --muted: #a7ada0;

  --line: rgba(255, 255, 255, 0.13);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;

  --section-space: clamp(75px, 8vw, 125px);
}

/* ==================== RESET ==================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body:has(#lightbox[open]) {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button {
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

svg {
  display: block;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

[hidden] {
  display: none !important;
}

em {
  color: var(--gold);
  font-weight: 400;
}

.gold {
  color: var(--gold);
}

/* Content stays visible even if GSAP fails to load. */

.reveal,
.hero-reveal {
  opacity: 1;
  visibility: visible;
}

/* ==================== SHARED ELEMENTS ==================== */

.section {
  padding: var(--section-space) 8%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 2.2px;
}

.line {
  flex-shrink: 0;
  width: 38px;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 1.06;
  letter-spacing: -1.3px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  min-height: 54px;
  padding: 15px 26px;

  border: 1px solid rgba(199, 174, 129, 0.8);
  background: transparent;
  color: var(--cream);

  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.button > span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
  background: rgba(199, 174, 129, 0.1);
}

.button:hover > span {
  transform: translate(3px, -3px);
}

.button.small {
  min-height: 46px;
  padding: 11px 19px;
  gap: 20px;
  font-size: 13px;
}

.button.filled {
  border-color: var(--gold);
  background: var(--gold);
  color: #171c13;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.button.filled:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(199, 174, 129, 0.13);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  padding-bottom: 5px;
  border-bottom: 1px solid rgba(199, 174, 129, 0.45);

  font-size: 14px;
  line-height: 1.6;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.text-link > span {
  flex-shrink: 0;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.text-link:hover > span {
  transform: translate(3px, -3px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 45px;
}

.section-heading > div {
  min-width: 0;
}

.section-heading > p {
  flex-shrink: 0;
  color: #6e7567;
  font-size: 16px;
}

.demo-note {
  margin-top: 48px;
  color: #9ba18f;
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

/* ==================== HEADER ==================== */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  width: 100%;
  min-height: 100px;
  padding: 18px 5%;

  border-bottom: 1px solid var(--line);
  background: rgba(10, 15, 10, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  position: relative;
  padding-right: 12px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -7px;
}

.brand-mark > span {
  position: absolute;
  top: -4px;
  right: -1px;

  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
}

.brand-name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 3px;
}

.brand-name small {
  display: block;
  margin-top: 3px;
  color: #c9cbbf;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.7px;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.header nav a {
  position: relative;
  padding: 7px 0;
  color: #e2e4d9;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.header nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: var(--gold);
  content: "";

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header nav a:hover,
.header nav a.active {
  color: var(--gold);
}

.header nav a:hover::after,
.header nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
}

/* ==================== HERO ==================== */

.hero {
  position: relative;
  isolation: isolate;

  display: flex;
  align-items: center;

  min-height: 790px;
  height: 100svh;
  max-height: 1100px;

  overflow: hidden;
  background: var(--bg);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -3;

  width: 69%;
  height: 100%;

  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      #111310 0%,
      rgba(17, 19, 16, 0.96) 21%,
      rgba(17, 19, 16, 0.69) 44%,
      rgba(17, 19, 16, 0.03) 80%
    ),
    linear-gradient(
      0deg,
      #111310 0%,
      transparent 35%,
      rgba(17, 19, 16, 0.22) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1140px;
  padding: 150px 8% 125px;
}

.hero .eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(70px, 8.1vw, 126px);
  line-height: 0.98;
  letter-spacing: -3.5px;
}

.hero h1 em {
  display: inline-block;
}

.hero-content > p {
  max-width: 510px;
  color: #d4d8cc;
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.hero-bottom {
  position: absolute;
  right: 5%;
  bottom: 33px;
  left: 5%;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  color: #c4cbbb;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 1.4px;
}

.hero-bottom > span:first-child .gold {
  margin: 0 10px;
}

.hero-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 23px;
}

.hero-bottom > a > span {
  font-size: 22px;
  animation: scrollHint 2.2s ease-in-out infinite;
}

.hero-bottom > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.slide-line {
  width: 58px;
  height: 1px;
  background: rgba(199, 174, 129, 0.8);
}

.vertical-note {
  position: absolute;
  top: 43%;
  right: 27px;
  z-index: 3;

  color: #e0dfd2;
  font-size: 10px;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
}

@keyframes scrollHint {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ==================== MARQUEE ==================== */

.marquee {
  overflow: hidden;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  background: var(--bg-soft);
  color: #c7c4b5;

  font-size: 12px;
  letter-spacing: 3px;
  white-space: nowrap;
}

.marquee > div {
  width: max-content;
  animation: marqueeDrift 45s linear infinite;
}

.marquee span {
  display: inline-block;
  margin: 0 48px;
  color: var(--gold);
}

@keyframes marqueeDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

/* ==================== ABOUT ==================== */

.about {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: 10%;
}

.about > * {
  min-width: 0;
}

.about-visual {
  position: relative;
  padding: 18px 20px 0 0;
  perspective: 1100px;
}

.about-visual::before {
  position: absolute;
  inset: 0 40px 52px -17px;

  border: 1px solid rgba(199, 174, 129, 0.33);
  content: "";

  transform: rotate(-5deg);
}

.photo-frame {
  position: relative;

  height: 570px;
  overflow: hidden;

  background: #292e23;
  box-shadow:
    18px 25px 55px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);

  transform: rotate(-2deg);
  transform-style: preserve-3d;
}

.photo-frame img {
  object-position: center 35%;
  filter: saturate(0.83);
  transition:
    filter 0.6s ease,
    scale 0.8s ease;
}

.photo-frame:hover img {
  filter: saturate(1);
  scale: 1.035;
}

.photo-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  padding: 75px 25px 26px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(9, 14, 9, 0.9)
  );

  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.25;
}

.floating-seal {
  position: absolute;
  right: -28px;
  bottom: 65px;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 125px;
  height: 125px;

  border: 7px solid var(--bg);
  border-radius: 50%;

  background: var(--gold);
  color: #1c2418;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-align: center;

  transform: rotate(12deg);
}

.floating-seal > span {
  font-size: 27px;
  line-height: 1;
}

.image-index {
  display: block;
  margin-top: 29px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 1.7px;
}

.about-copy > p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.signature-row {
  display: flex;
  align-items: center;
  gap: 23px;

  margin: 10px 0 23px;
  padding: 30px 0;

  border-bottom: 1px solid var(--line);
}

.signature {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  line-height: 1.15;
}

.signature-row > span:last-child {
  padding-left: 20px;
  border-left: 1px solid var(--line);

  color: #bdc3b3;
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 1px;
}

/* ==================== GALLERY ==================== */

.stories {
  background: #eae7de;
  color: #20271c;
}

.stories .eyebrow {
  color: #796240;
}

.stories h2 em {
  color: #897044;
}

.filter-row {
  display: flex;
  align-items: stretch;
  gap: 30px;

  margin-bottom: 36px;
  border-bottom: 1px solid rgba(28, 37, 22, 0.18);
}

.filter {
  flex-shrink: 0;

  min-height: 48px;
  padding: 0 0 17px;

  border: 0;
  border-bottom: 2px solid transparent;
  background: none;

  color: #686f60;
  font-size: 14px;
  white-space: nowrap;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.filter sup {
  margin-left: 5px;
  font-size: 10px;
}

.filter:hover,
.filter.active {
  color: #222c1c;
}

.filter.active {
  border-bottom-color: #927544;
}

.stories button:focus-visible,
.stories a:focus-visible {
  outline-color: #76603b;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 355px;
  gap: 23px;
}

.gallery-card {
  position: relative;
  isolation: isolate;

  display: block;
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0;

  overflow: hidden;
  border: 0;
  border-radius: 0;

  background: #343d2b;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(24, 32, 21, 0.1);

  text-align: left;

  transition: box-shadow 0.4s ease;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(5) {
  top: 24px;
}

.gallery-card > img {
  object-position: center;
  filter: saturate(0.87);

  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.8s ease;
}

.gallery-card:nth-child(2) > img {
  object-position: center 38%;
}

.gallery-card:nth-child(5) > img {
  object-position: center 30%;
}

.gallery-card:hover {
  box-shadow: 0 20px 36px rgba(24, 32, 21, 0.25);
}

.gallery-card:hover > img {
  filter: saturate(1);
  transform: scale(1.07);
}

.gallery-shade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;

  display: block;
  padding: 85px 23px 25px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(8, 14, 8, 0.91)
  );
}

.gallery-shade > span:first-child {
  display: block;
  margin-bottom: 8px;

  color: #e4cba2;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.8px;
}

/* Matches the gallery-title spans in your HTML. */

.gallery-title {
  display: block;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.expand {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 3;

  display: grid;
  place-items: center;

  width: 37px;
  height: 37px;

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(15, 22, 12, 0.12);

  font-size: 22px;
  line-height: 1;

  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.gallery-card:hover .expand {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.stories .demo-note {
  margin-top: 65px;
  color: #656f5c;
}

/* ==================== SERVICES ==================== */

.services .section-heading {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  perspective: 1500px;
}

.service {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  padding: 35px 26px;

  border-right: 1px solid var(--line);
  background: var(--bg);

  transform-style: preserve-3d;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.service:first-child {
  border-left: 1px solid var(--line);
}

.service:hover {
  z-index: 2;
  background: #21271c;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.service-no {
  color: #9aa28f;
  font-size: 12px;
  line-height: 1;
}

.service-symbol {
  display: block;
  margin: 30px 0;

  color: var(--gold);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;

  transform: translateZ(22px);
}

.service h3 {
  font-size: clamp(29px, 2.3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.6px;

  transform: translateZ(18px);
}

.service p {
  margin: 23px 0 30px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.service a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-top: auto;
  padding-top: 6px;

  color: var(--gold);
  font-size: 13px;
  line-height: 1.6;
}

.service a > span {
  flex-shrink: 0;
  font-size: 23px;
  transition: transform 0.3s ease;
}

.service a:hover > span {
  transform: translate(3px, -3px);
}

/* ==================== TESTIMONIAL ==================== */

.quote-section {
  position: relative;
  isolation: isolate;

  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  background: #1b2117;
  text-align: center;
}

.quote-section::before,
.quote-section::after {
  position: absolute;
  z-index: -1;

  width: 430px;
  height: 430px;

  border: 1px solid rgba(199, 174, 129, 0.09);
  border-radius: 50%;
  content: "";

  pointer-events: none;
}

.quote-section::before {
  top: -170px;
  left: -220px;
}

.quote-section::after {
  right: -240px;
  bottom: -230px;
  width: 520px;
  height: 520px;
}

.quote-section .eyebrow {
  justify-content: center;
}

.quote-mark {
  margin-top: 33px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 110px;
  line-height: 0.7;
}

.quote-section blockquote {
  position: relative;

  max-width: 1000px;
  margin: 0 auto 33px;

  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 61px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  text-wrap: balance;
}

.quote-attribution > .gold {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 5px;
}

.quote-attribution p {
  margin-top: 12px;
  font-size: 14px;
}

.quote-attribution small {
  display: block;
  margin-top: 8px;

  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

/* ==================== CONTACT ==================== */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 9%;
}

.contact > * {
  min-width: 0;
}

.contact-copy h2 {
  font-size: clamp(52px, 5.3vw, 82px);
  line-height: 1.04;
  letter-spacing: -1.7px;
}

.contact-copy > p {
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.contact-details {
  display: grid;
  gap: 24px;
  margin: 36px 0;
}

.contact-details > a {
  width: fit-content;
  font-size: 21px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.contact-details > a:hover {
  color: var(--gold);
}

.contact-details > div {
  font-size: 16px;
}

.contact-details span {
  display: block;
  margin-bottom: 6px;

  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.8px;
}

/* ==================== CONTACT FORM ==================== */

.enquiry-form {
  position: relative;

  padding: 40px;

  border: 1px solid var(--line);
  background:
    linear-gradient(
      145deg,
      rgba(199, 174, 129, 0.035),
      transparent 48%
    ),
    var(--panel);

  box-shadow:
    13px 16px 0 #181d14,
    25px 35px 60px rgba(0, 0, 0, 0.2);
}

.enquiry-form h3 {
  margin-bottom: 32px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.7px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
}

.form-grid label {
  display: block;
  min-width: 0;

  color: #e0e2d5;
  font-size: 14px;
  line-height: 1.6;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  display: block;

  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 0;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;

  background: transparent;
  color: var(--cream);

  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;

  color-scheme: dark;

  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: #979f8d;
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  background: rgba(199, 174, 129, 0.035);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1px solid rgba(199, 174, 129, 0.4);
  outline-offset: 5px;
}

input[type="date"] {
  appearance: auto;
  -webkit-appearance: auto;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.75;
}

select {
  padding-right: 20px;
  cursor: pointer;
}

select option {
  background: #20271a;
  color: var(--cream);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--cream);
  -webkit-box-shadow: 0 0 0 1000px var(--panel) inset;
  caret-color: var(--cream);
}

.submit {
  width: 100%;
  margin-top: 30px;
  text-align: left;
}

.form-note {
  margin-top: 15px;
  color: #a5ad99;
  font-size: 12px;
  line-height: 1.8;
}

.form-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#form-status {
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 13px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

#form-status:empty {
  display: none;
}

#form-status a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================== FOOTER ==================== */

footer {
  padding: 48px 5% 28px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding-bottom: 38px;
}

.footer-top > p {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.4;
}

.back-top {
  flex-shrink: 0;
  padding: 12px 0;

  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 1.6px;

  transition: color 0.3s ease;
}

.back-top:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding-top: 24px;
  border-top: 1px solid var(--line);

  color: #a0a996;
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom a {
  color: var(--gold);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ==================== FLOATING WHATSAPP ==================== */

.floating-contact {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 50;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 49px;
  padding: 12px 20px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;

  background: #d4c09a;
  color: #172014;

  box-shadow:
    0 6px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.floating-contact svg {
  flex-shrink: 0;
  width: 23px;
  height: 23px;
}

.floating-contact:hover {
  transform: translateY(-4px);
  background: var(--gold-light);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

/* ==================== GALLERY LIGHTBOX ==================== */

#lightbox {
  position: fixed;

  width: min(1000px, 92vw);
  max-width: 1000px;
  max-height: 94svh;
  margin: auto;
  padding: 22px;

  overflow: auto;
  overscroll-behavior: contain;

  border: 1px solid rgba(199, 174, 129, 0.25);
  background: #11170e;
  color: var(--cream);

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

#lightbox::backdrop {
  background: rgba(3, 7, 3, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

#lightbox > img {
  display: block;

  width: 100%;
  height: auto;
  max-height: 68svh;

  background: #11170e;
  object-fit: contain;
}

#lightbox > p {
  margin-top: 19px;

  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
}

.close-lightbox {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;

  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;
  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;

  background: rgba(14, 21, 11, 0.92);
  color: #ffffff;

  font-family: var(--sans);
  font-size: 30px;
  line-height: 1;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.close-lightbox:hover {
  transform: rotate(90deg);
  background: #36422d;
}

.lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;

  margin-top: 20px;
}

.lightbox-controls button {
  display: grid;
  place-items: center;

  width: 46px;
  height: 44px;
  padding: 0;

  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);

  font-size: 25px;
  line-height: 1;

  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.lightbox-controls button:hover {
  border-color: var(--gold);
  background: rgba(199, 174, 129, 0.09);
}

#photo-counter {
  min-width: 48px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* ==================== LARGE SCREENS ==================== */

@media (min-width: 1600px) {
  .section {
    padding-right: max(8%, calc((100vw - 1380px) / 2));
    padding-left: max(8%, calc((100vw - 1380px) / 2));
  }

  .hero-content {
    max-width: 1400px;
    padding-left: max(8%, calc((100vw - 1380px) / 2));
  }

  .gallery {
    grid-auto-rows: 405px;
  }
}

/* ==================== SMALL LAPTOP ==================== */

@media (max-width: 1200px) {
  .header {
    gap: 18px;
    padding-right: 5%;
    padding-left: 5%;
  }

  .header nav {
    gap: 20px;
  }

  .header nav a {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding-right: 6%;
    padding-left: 6%;
  }

  .hero-content {
    padding-left: 6%;
  }

  .about {
    gap: 7%;
  }

  .photo-frame {
    height: 520px;
  }

  .signature-row {
    flex-wrap: wrap;
    gap: 15px;
  }

  .signature-row > span:last-child {
    padding-left: 0;
    border-left: 0;
  }

  .gallery {
    grid-auto-rows: 320px;
    gap: 20px;
  }

  .gallery-title {
    font-size: 27px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service {
    padding: 35px;
  }

  .service:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .service h3 {
    font-size: 38px;
  }

  .service p {
    font-size: 16px;
  }

  .service a {
    font-size: 14px;
  }

  .contact {
    gap: 6%;
  }

  .enquiry-form {
    padding: 30px;
  }

  .hero-bottom {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .footer-top > p {
    font-size: 24px;
  }
}

/* ==================== TABLET ==================== */

@media (max-width: 900px) {
  .hero {
    min-height: 780px;
  }

  .hero h1 {
    font-size: clamp(72px, 10vw, 95px);
  }

  .hero-image {
    width: 76%;
    object-position: center 60%;
  }

  .hero-content {
    padding-right: 6%;
  }

  .hero-bottom > a {
    display: none;
  }

  .about {
    gap: 6%;
  }

  .about-copy h2 {
    font-size: 45px;
  }

  .photo-frame {
    height: 500px;
  }

  .floating-seal {
    right: -20px;
    width: 110px;
    height: 110px;
    font-size: 9px;
  }

  .image-index {
    font-size: 9px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 370px;
  }

  .gallery-card:nth-child(2),
  .gallery-card:nth-child(5) {
    top: 0;
  }

  .gallery-card:nth-child(even) {
    top: 20px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .services .section-heading {
    flex-direction: column;
    gap: 25px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-copy h2 {
    font-size: 73px;
  }

  .contact-copy > p {
    max-width: 520px;
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .enquiry-form {
    padding: 40px;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-top > p {
    order: 3;
    width: 100%;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px 25px;
  }
}

/* ==================== MOBILE ==================== */

@media (max-width: 700px) {
  :root {
    --section-space: 75px;
  }

  html {
    scroll-padding-top: 100px;
  }

  .section {
    padding-right: 7%;
    padding-left: 7%;
  }

  .header {
    min-height: 80px;
    padding: 17px 6%;
  }

  .brand {
    gap: 13px;
  }

  .brand-mark {
    font-size: 39px;
    letter-spacing: -6px;
  }

  .brand-mark > span {
    top: -3px;
    right: 0;
    font-size: 15px;
  }

  .brand-name {
    font-size: 14px;
    letter-spacing: 2.3px;
  }

  .brand-name small {
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;

    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;

    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(17, 24, 13, 0.4);
    color: var(--cream);

    font-size: 23px;
    line-height: 1;
  }

  .header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    max-height: calc(100svh - 90px);
    padding: 18px 7% 24px;
    overflow-y: auto;

    border-bottom: 1px solid var(--line);
    background: rgba(17, 24, 13, 0.98);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .header nav.open {
    display: flex;
  }

  .header nav a {
    padding: 15px 0;
    font-size: 16px;
  }

  .header nav a + a {
    border-top: 1px solid var(--line);
  }

  .header nav a::after {
    display: none;
  }

  .hero {
    min-height: 800px;
    height: 100svh;
    max-height: 1000px;
  }

  .hero-image {
    width: 100%;
    object-position: center 58%;
    opacity: 0.72;
  }

  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(17, 19, 16, 0.86),
        rgba(17, 19, 16, 0.28)
      ),
      linear-gradient(
        0deg,
        #111310 0%,
        rgba(17, 19, 16, 0.08) 70%,
        rgba(17, 19, 16, 0.4) 100%
      );
  }

  .hero-content {
    max-width: none;
    padding: 135px 7% 120px;
  }

  .eyebrow {
    gap: 10px;
    margin-bottom: 23px;
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 1.4px;
  }

  .line {
    width: 24px;
  }

  .hero .eyebrow {
    max-width: 350px;
    margin-bottom: 28px;
  }

  .hero h1 {
    margin-bottom: 27px;
    font-size: clamp(58px, 12.5vw, 86px);
    line-height: 1;
    letter-spacing: -2px;
  }

  .hero-content > p {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.85;
  }

  .hero-content > p br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin-top: 30px;
  }

  .hero-bottom {
    right: 7%;
    bottom: 28px;
    left: 7%;

    gap: 15px;
    font-size: 9px;
    letter-spacing: 0.7px;
  }

  .hero-bottom > span:first-child {
    max-width: 235px;
  }

  .hero-bottom > span:first-child .gold {
    margin: 0 5px;
  }

  .hero-bottom > span:last-child {
    gap: 8px;
    font-size: 9px;
  }

  .slide-line {
    width: 24px;
  }

  .vertical-note {
    display: none;
  }

  .marquee {
    padding: 18px 0;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .marquee span {
    margin: 0 27px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-visual {
    width: 90%;
    margin: 0 auto;
    padding-right: 13px;
  }

  .about-visual::before {
    right: 26px;
    left: -13px;
  }

  .photo-frame {
    height: clamp(390px, 110vw, 530px);
  }

  .photo-caption {
    padding: 70px 22px 24px;
    font-size: 24px;
  }

  .floating-seal {
    right: -20px;
    bottom: 70px;
    width: 110px;
    height: 110px;
  }

  .image-index {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .about-copy h2 {
    font-size: clamp(40px, 9vw, 55px);
  }

  .about-copy > p {
    font-size: 16px;
  }

  .signature-row {
    flex-wrap: nowrap;
    gap: 20px;
  }

  .signature {
    font-size: 28px;
  }

  .signature-row > span:last-child {
    font-size: 9px;
    letter-spacing: 0.6px;
  }

  h2 {
    font-size: clamp(40px, 9vw, 57px);
    letter-spacing: -1px;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading > p {
    margin-top: 20px;
    font-size: 16px;
  }

  .section-heading > .text-link {
    margin-top: 26px;
  }

  .filter-row {
    gap: 24px;

    margin-bottom: 28px;
    padding-top: 5px;

    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #a6997b transparent;
  }

  .filter {
    min-height: 44px;
    padding-bottom: 14px;
    font-size: 13px;
  }

  .gallery {
    grid-auto-rows: 290px;
    gap: 15px;
  }

  .gallery-card:nth-child(even) {
    top: 16px;
  }

  .gallery-shade {
    padding: 65px 14px 19px;
  }

  .gallery-shade > span:first-child {
    margin-bottom: 7px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .gallery-title {
    font-size: 24px;
    line-height: 1.08;
  }

  .expand {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .stories .demo-note {
    margin-top: 46px;
  }

  .demo-note {
    font-size: 12px;
  }

  .services .section-heading {
    margin-bottom: 35px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service {
    padding: 32px;
  }

  .service:nth-child(n) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .service:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .service-symbol {
    margin: 23px 0;
    font-size: 45px;
  }

  .service h3 {
    font-size: 39px;
  }

  .service p {
    margin: 22px 0 24px;
    font-size: 16px;
  }

  .service a {
    font-size: 14px;
  }

  .quote-section blockquote {
    font-size: clamp(35px, 8.5vw, 48px);
    line-height: 1.2;
  }

  .quote-section blockquote br {
    display: none;
  }

  .quote-mark {
    font-size: 95px;
  }

  .quote-attribution p {
    font-size: 14px;
  }

  .quote-attribution small {
    font-size: 11px;
  }

  .contact {
    gap: 45px;
  }

  .contact-copy h2 {
    font-size: clamp(55px, 12vw, 75px);
  }

  .contact-copy > p {
    font-size: 16px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-details > a {
    font-size: 22px;
  }

  .contact-details span {
    font-size: 11px;
  }

  .enquiry-form {
    padding: 28px 23px;
    box-shadow:
      8px 10px 0 #181d14,
      15px 20px 35px rgba(0, 0, 0, 0.16);
  }

  .enquiry-form h3 {
    margin-bottom: 28px;
    font-size: 36px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .form-grid label {
    font-size: 14px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .submit {
    gap: 15px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 13px;
  }

  footer {
    padding: 40px 7% 90px;
  }

  .footer-top {
    gap: 26px;
    padding-bottom: 30px;
  }

  .footer-top > p {
    font-size: 25px;
  }

  .back-top {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }

  #lightbox {
    width: 94vw;
    max-height: 92svh;
    padding: 13px;
  }

  #lightbox > img {
    max-height: 67svh;
  }

  #lightbox > p {
    margin-top: 17px;
    padding: 0 8px;
    font-size: 27px;
  }

  .close-lightbox {
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
  }
}

/* ==================== SMALL MOBILE ==================== */

@media (max-width: 400px) {
  .hero {
    min-height: 820px;
  }

  .hero h1 {
    font-size: 57px;
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.1px;
  }

  .hero-bottom > span:last-child {
    display: none;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
    gap: 20px;
  }

  .gallery-card:nth-child(n) {
    top: 0;
  }

  .gallery-shade {
    padding: 80px 23px 24px;
  }

  .gallery-title {
    font-size: 32px;
  }

  .gallery-shade > span:first-child {
    font-size: 11px;
  }

  .signature-row {
    flex-wrap: wrap;
    gap: 13px;
  }

  .service {
    padding: 29px 25px;
  }

  .contact-copy h2 {
    font-size: 53px;
  }

  .footer-top {
    align-items: flex-start;
  }
}

/* ==================== TOUCH DEVICES ==================== */

@media (hover: none) {
  .button:hover,
  .floating-contact:hover {
    transform: none;
  }

  .gallery-card:hover > img {
    transform: none;
  }

  .photo-frame:hover img {
    scale: 1;
  }

  .service:hover {
    background: var(--bg);
    box-shadow: none;
  }
}

/* ==================== REDUCED MOTION ==================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-image,
  .photo-frame,
  .service,
  .service-symbol,
  .service h3 {
    transform: none !important;
  }

  .reveal,
  .hero-reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}