/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4f2ed;
  color: #111;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --black: #0a0a0a;
  --dark: #111;
  --white: #fff;

  --cream: #f4f2ed;
  --cream-dark: #e7e4dc;

  --gray: #777;
  --gray-light: #aaa;

  --border: rgba(0, 0, 0, 0.12);

  --serif: "Playfair Display", serif;
  --sans: "DM Sans", sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* =========================================================
   PAGE LOADER
   ========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  background: var(--black);

  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-inner > span {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.loader-bar {
  width: 100px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.loader-bar i {
  display: block;
  width: 100%;
  height: 100%;

  background: white;

  transform: translateX(-100%);

  animation: loader 1s var(--ease) forwards;
}

@keyframes loader {
  to {
    transform: translateX(0);
  }
}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  z-index: 2000;

  pointer-events: none;
}

.scroll-progress span {
  display: block;

  width: 0;
  height: 100%;

  background: #111;

  transition: width 0.05s linear;
}

/* =========================================================
   CURSOR
   ========================================================= */

.cursor,
.cursor-follower {
  position: fixed;

  top: 0;
  left: 0;

  pointer-events: none;

  z-index: 3000;

  border-radius: 50%;

  transform: translate3d(-50%, -50%, 0);
}

.cursor {
  width: 6px;
  height: 6px;

  background: #fff;

  mix-blend-mode: difference;
}

.cursor-follower {
  width: 35px;
  height: 35px;

  border: 1px solid rgba(255, 255, 255, 0.8);

  mix-blend-mode: difference;

  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease);
}

.cursor-hover .cursor-follower {
  width: 60px;
  height: 60px;
}

@media (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  color: white;
}

.header-inner {
  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.4);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.logo-text {
  display: flex;
  flex-direction: column;

  font-size: 14px;
  font-weight: 600;
}

.logo-text small {
  margin-top: 2px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 28px;
}

.main-nav a {
  position: relative;

  color: rgba(255, 255, 255, 0.6);

  font-size: 12px;
  font-weight: 500;

  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 100%;
  height: 1px;

  background: white;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.35s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-button,
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  min-height: 40px;

  padding: 0 14px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  font-size: 11px;
  font-weight: 600;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.preview-button {
  color: rgba(255, 255, 255, 0.8);
}

.preview-button:hover {
  color: #111;
  background: white;
  border-color: white;
}

.header-cta {
  color: #111;
  background: white;
  border-color: white;
}

.header-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 1px;

  margin: 5px 0;

  background: white;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: white;

  background: #080808;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92),
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.2)
    ),
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2200&q=90")
      center / cover;

  opacity: 0.7;

  transform: scale(1.03);

  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35),
    transparent 40%,
    rgba(0, 0, 0, 0.5)
  );

  pointer-events: none;
}

.hero-orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  opacity: 0.18;
}

.hero-orb-one {
  width: 400px;
  height: 400px;

  right: 5%;
  top: 10%;

  background: #fff;
}

.hero-orb-two {
  width: 300px;
  height: 300px;

  left: 30%;
  bottom: -150px;

  background: #777;
}

.hero-inner {
  position: relative;

  z-index: 2;

  padding-top: 110px;
  padding-bottom: 45px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 70px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
}

.availability i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #9cffb0;

  box-shadow: 0 0 12px #9cffb0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 0.62fr;

  align-items: center;

  gap: 80px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 20px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.hero h1 {
  margin: 0;

  font-size: clamp(62px, 8vw, 118px);

  line-height: 0.88;

  font-weight: 500;

  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;

  color: #bdbdbd;
}

.hero h1 em {
  display: block;

  font-family: var(--serif);

  font-weight: 500;

  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 510px;

  margin: 40px 0 35px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  min-width: 190px;

  padding: 17px 20px;

  font-size: 11px;
  font-weight: 600;

  transition:
    transform 0.3s var(--ease),
    background 0.3s ease,
    color 0.3s ease;
}

.button span {
  font-size: 18px;
}

.button-dark {
  color: white;
  background: #111;
}

.button-dark:hover {
  color: #111;
  background: white;
  transform: translateY(-3px);
}

.button-light {
  color: #111;
  background: white;
}

.button-light:hover {
  background: #ddd;
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: white;

  font-size: 11px;
  font-weight: 600;
}

.text-link span {
  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
}

.hero-image {
  position: relative;

  width: 100%;
  max-width: 430px;

  aspect-ratio: 0.78;

  overflow: hidden;

  margin-left: auto;
}

.hero-image::before {
  content: "";

  position: absolute;
  inset: 12px;

  z-index: 1;

  border: 1px solid rgba(255, 255, 255, 0.2);

  pointer-events: none;
}

.hero-image img {
  height: 100%;

  object-fit: cover;

  filter: grayscale(15%);

  transition: transform 1s var(--ease);
}

.hero-image:hover img {
  transform: scale(1.04);
}

.hero-image-gradient {
  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6));
}

.hero-image-number {
  position: absolute;

  right: 25px;
  bottom: 20px;

  font-size: 10px;

  letter-spacing: 0.15em;
}

.hero-image-note {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 14px;

  justify-content: flex-end;

  color: rgba(255, 255, 255, 0.55);

  font-size: 9px;

  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-image-note span {
  width: 25px;
  height: 1px;

  background: rgba(255, 255, 255, 0.4);
}

.hero-image-note strong {
  color: white;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin-top: 50px;

  color: rgba(255, 255, 255, 0.4);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 9px;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;

  width: 40px;
  height: 1px;

  background: rgba(255, 255, 255, 0.4);
}

.hero-scroll i::after {
  content: "";

  position: absolute;

  right: 0;
  top: -3px;

  width: 6px;
  height: 6px;

  border-right: 1px solid white;
  border-bottom: 1px solid white;

  transform: rotate(45deg);
}

.hero-bottom > p {
  margin: 0;

  font-size: 9px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-section {
  overflow: hidden;

  padding: 25px 0;

  background: #111;

  color: white;
}

.marquee-track {
  display: flex;
  align-items: center;

  width: max-content;

  gap: 35px;

  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);

  font-size: 24px;
  font-style: italic;

  white-space: nowrap;
}

.marquee-track i {
  color: #777;

  font-size: 12px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 150px 0;
}

.section-number {
  color: #aaa;

  font-size: 11px;

  letter-spacing: 0.18em;
}

/* =========================================================
   INTRO
   ========================================================= */

.intro-section {
  padding: 150px 0;

  background: var(--cream);
}

.intro-grid {
  display: grid;

  grid-template-columns: 150px 1fr;

  gap: 80px;
}

.intro-content {
  max-width: 850px;
}

.intro-content h2 {
  margin: 0 0 35px;

  max-width: 850px;

  font-size: clamp(48px, 6vw, 82px);

  line-height: 0.98;

  font-weight: 500;

  letter-spacing: -0.065em;
}

.intro-content h2 em {
  display: block;

  font-family: var(--serif);

  font-weight: 500;
}

.intro-text {
  max-width: 620px;

  margin: 0 0 35px;

  color: #666;

  font-size: 16px;
  line-height: 1.9;
}

.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  padding-bottom: 8px;

  border-bottom: 1px solid #111;

  font-size: 11px;
  font-weight: 600;
}

.underlined-link span {
  transition: transform 0.3s ease;
}

.underlined-link:hover span {
  transform: translate(4px, -4px);
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  background: #e8e5dd;
}

.about-grid {
  display: grid;

  grid-template-columns: 0.85fr 1fr;

  gap: 120px;

  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  aspect-ratio: 0.82;

  object-fit: cover;
}

.image-caption {
  position: absolute;

  left: 20px;
  bottom: 20px;

  right: 20px;

  display: flex;
  justify-content: space-between;

  color: white;

  font-size: 8px;

  letter-spacing: 0.15em;
}

.about-content {
  max-width: 620px;
}

.about-content h2 {
  margin: 0 0 35px;

  font-size: clamp(46px, 5vw, 72px);

  line-height: 0.95;

  font-weight: 500;

  letter-spacing: -0.06em;
}

.about-content h2 span {
  display: block;

  font-family: var(--serif);
  font-style: italic;
}

.about-content > p {
  max-width: 560px;

  color: #555;

  font-size: 15px;

  line-height: 1.9;
}

.about-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin-top: 60px;

  padding-top: 30px;

  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;

  margin-bottom: 8px;

  font-size: 42px;
  font-weight: 500;

  letter-spacing: -0.06em;
}

.stat span {
  color: #777;

  font-size: 9px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 50px;

  margin-bottom: 70px;
}

.section-heading h2 {
  margin: 0;

  font-size: clamp(55px, 7vw, 95px);

  line-height: 0.85;

  font-weight: 500;

  letter-spacing: -0.07em;
}

.section-heading h2 em {
  font-family: var(--serif);
  font-weight: 500;
}

.section-heading > p {
  max-width: 340px;

  margin: 0;

  color: #777;

  font-size: 13px;
  line-height: 1.8;
}

/* =========================================================
   PORTFOLIO
   ========================================================= */

.portfolio-section {
  background: var(--cream);
}

.portfolio-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.portfolio-item {
  position: relative;

  overflow: hidden;

  cursor: pointer;

  background: #111;
}

.portfolio-large {
  grid-row: span 2;
}

.portfolio-wide {
  grid-column: span 2;
}

.portfolio-item img {
  height: 100%;
  min-height: 450px;

  object-fit: cover;

  transition:
    transform 0.8s var(--ease),
    filter 0.5s ease;
}

.portfolio-large img {
  min-height: 900px;
}

.portfolio-wide img {
  min-height: 500px;
}

.portfolio-item:hover img {
  transform: scale(1.06);

  filter: brightness(0.7);
}

.portfolio-overlay {
  position: absolute;
  inset: auto 0 0;

  padding: 35px;

  color: white;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));

  transform: translateY(8px);

  transition: transform 0.5s var(--ease);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay span {
  display: block;

  margin-bottom: 10px;

  font-size: 9px;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.6);
}

.portfolio-overlay h3 {
  margin: 0;

  font-family: var(--serif);

  font-size: 30px;

  font-weight: 500;
}

.portfolio-overlay i {
  position: absolute;

  right: 35px;
  bottom: 35px;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 50%;

  font-style: normal;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay i {
  background: white;
  color: #111;
}

.portfolio-footer {
  display: flex;
  justify-content: space-between;

  padding-top: 35px;

  border-top: 1px solid var(--border);

  margin-top: 35px;

  color: #777;

  font-size: 10px;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-footer a {
  color: #111;

  font-weight: 600;
}

.portfolio-footer a span {
  margin-left: 10px;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  background: #111;
  color: white;
}

.services-section .eyebrow {
  color: #777;
}

.services-heading > p {
  color: #888;
}

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.service {
  display: grid;

  grid-template-columns: 100px 1fr 40px;

  gap: 30px;

  align-items: center;

  padding: 35px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

  transition:
    padding 0.4s var(--ease),
    background 0.4s ease;
}

.service:hover {
  padding-left: 20px;
  padding-right: 20px;

  background: rgba(255, 255, 255, 0.04);
}

.service-number {
  color: #555;

  font-size: 10px;

  letter-spacing: 0.15em;
}

.service-main {
  display: grid;

  grid-template-columns: minmax(220px, 0.8fr) 1fr;

  align-items: center;

  gap: 30px;
}

.service-main h3 {
  margin: 0;

  font-size: clamp(30px, 4vw, 48px);

  font-weight: 500;

  letter-spacing: -0.05em;
}

.service-main > span {
  color: #666;

  font-size: 9px;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-main p {
  grid-column: 2;

  max-width: 500px;

  margin: 10px 0 0;

  color: #888;

  font-size: 13px;
  line-height: 1.7;
}

.service-arrow {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.service:hover .service-arrow {
  background: white;
  color: #111;

  transform: rotate(45deg);
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  background: #e8e5dd;
}

.process-grid {
  display: grid;

  grid-template-columns: 0.8fr 1fr;

  gap: 120px;
}

.process-intro {
  max-width: 500px;
}

.process-intro h2 {
  margin: 0 0 30px;

  font-size: clamp(52px, 6vw, 80px);

  line-height: 0.9;

  font-weight: 500;

  letter-spacing: -0.07em;
}

.process-intro h2 em {
  font-family: var(--serif);
}

.process-intro > p:last-child {
  color: #666;

  font-size: 14px;
  line-height: 1.8;
}

.process-list {
  border-top: 1px solid var(--border);
}

.process-step {
  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 30px;

  padding: 30px 0;

  border-bottom: 1px solid var(--border);
}

.process-step > span {
  color: #999;

  font-size: 10px;
}

.process-step h3 {
  margin: 0 0 10px;

  font-size: 25px;
  font-weight: 500;

  letter-spacing: -0.03em;
}

.process-step p {
  max-width: 470px;

  margin: 0;

  color: #666;

  font-size: 13px;
  line-height: 1.7;
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial-section {
  padding: 150px 0;

  background: #111;

  color: white;
}

.testimonial-inner {
  max-width: 1000px;

  text-align: center;
}

.quote {
  display: block;

  margin-bottom: 20px;

  color: #555;

  font-family: var(--serif);

  font-size: 100px;

  line-height: 0.5;
}

.testimonial-inner blockquote {
  margin: 0 auto 45px;

  font-family: var(--serif);

  font-size: clamp(30px, 4vw, 55px);

  font-weight: 500;

  font-style: italic;

  line-height: 1.15;

  letter-spacing: -0.035em;
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  text-align: left;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border: 1px solid #444;

  border-radius: 50%;

  font-size: 10px;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  font-size: 11px;
}

.testimonial-person span {
  margin-top: 4px;

  color: #666;

  font-size: 9px;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 160px 0;

  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=90")
      center / cover fixed;

  color: white;

  text-align: center;
}

.cta-inner {
  max-width: 800px;
}

.cta-inner .eyebrow {
  color: #888;
}

.cta-inner h2 {
  margin: 0;

  font-size: clamp(65px, 9vw, 125px);

  line-height: 0.8;

  font-weight: 500;

  letter-spacing: -0.075em;
}

.cta-inner h2 em {
  font-family: var(--serif);
}

.cta-inner > p:not(.eyebrow) {
  max-width: 480px;

  margin: 40px auto;

  color: #aaa;

  font-size: 14px;
  line-height: 1.8;
}

.cta-inner .button {
  margin: 0 auto;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;

  grid-template-columns: 0.85fr 1fr;

  gap: 120px;
}

.contact-intro {
  max-width: 550px;
}

.contact-intro h2 {
  margin: 0 0 30px;

  font-size: clamp(60px, 7vw, 100px);

  line-height: 0.82;

  font-weight: 500;

  letter-spacing: -0.075em;
}

.contact-intro h2 em {
  display: block;

  font-family: var(--serif);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 450px;

  color: #666;

  font-size: 14px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 10px;

  margin-top: 50px;
}

.contact-details a {
  font-size: 15px;
  font-weight: 600;

  border-bottom: 1px solid transparent;

  transition: border-color 0.3s ease;
}

.contact-details a:hover {
  border-color: #111;
}

.contact-details span {
  margin-top: 8px;

  color: #888;

  font-size: 10px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  padding-top: 10px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;

  margin-bottom: 10px;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;

  padding: 15px 0;

  border: 0;
  border-bottom: 1px solid #bbb;

  outline: 0;

  color: #111;

  background: transparent;

  font-size: 14px;

  resize: vertical;

  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-button {
  width: 100%;

  margin-top: 10px;

  cursor: pointer;
}

.form-button:disabled {
  opacity: 0.6;

  cursor: default;
}

.form-note {
  margin: 20px 0 0;

  color: #999;

  font-size: 9px;
  line-height: 1.6;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #080808;
  color: white;
}

.footer-top {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  padding-top: 90px;
  padding-bottom: 90px;
}

.footer-brand p {
  margin-top: 30px;

  color: #666;

  font-size: 10px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 11px;
}

.footer-links strong {
  margin-bottom: 10px;

  color: white;

  font-size: 10px;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: #666;

  font-size: 11px;

  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  padding: 20px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: #555;

  font-size: 9px;

  letter-spacing: 0.08em;
}

.footer-bottom a {
  color: #777;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;

  z-index: 5000;

  display: grid;
  place-items: center;

  padding: 40px;

  background: rgba(0, 0, 0, 0.95);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: min(1100px, 100%);

  max-height: 90vh;
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;

  object-fit: contain;
}

.lightbox-info {
  display: flex;
  justify-content: space-between;

  margin-top: 15px;

  color: white;
}

.lightbox-category {
  color: #777;

  font-size: 9px;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox-title {
  font-family: var(--serif);

  font-size: 20px;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;

  top: 25px;
  right: 25px;

  width: 45px;
  height: 45px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  color: white;

  background: transparent;

  font-size: 28px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.lightbox-close:hover {
  color: #111;
  background: white;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-top {
  position: fixed;

  right: 25px;
  bottom: 25px;

  z-index: 900;

  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border: 1px solid #ccc;

  border-radius: 50%;

  background: rgba(244, 242, 237, 0.9);

  opacity: 0;
  visibility: hidden;

  transform: translateY(15px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
  .container {
    width: min(100% - 40px, 900px);
  }

  .main-nav {
    gap: 18px;
  }

  .preview-button {
    display: none;
  }

  .hero-content {
    gap: 45px;
  }

  .about-grid,
  .process-grid,
  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 800px) {
  .container {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 75px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;

    top: 75px;
    left: 16px;
    right: 16px;

    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 15px;

    background: rgba(10, 10, 10, 0.97);

    border: 1px solid rgba(255, 255, 255, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 10px;

    color: #aaa;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 35px;
  }

  .hero-meta {
    margin-bottom: 45px;
  }

  .hero-content {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 90px);
  }

  .hero-image {
    max-width: 500px;

    margin: 0 auto;
  }

  .hero-bottom {
    margin-top: 35px;
  }

  .section {
    padding: 100px 0;
  }

  .intro-section {
    padding: 100px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .about-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 600px;
  }

  .section-heading {
    flex-direction: column;

    align-items: flex-start;

    margin-bottom: 45px;
  }

  .section-heading > p {
    max-width: 500px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-large,
  .portfolio-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-item img,
  .portfolio-large img,
  .portfolio-wide img {
    min-height: 500px;
  }

  .service {
    grid-template-columns: 50px 1fr 40px;

    gap: 15px;
  }

  .service-main {
    grid-template-columns: 1fr;

    gap: 4px;
  }

  .service-main p {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;

    gap: 60px;
  }
}

@media (max-width: 560px) {
  .hero-meta {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;

    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-image {
    aspect-ratio: 0.8;
  }

  .hero-bottom > p {
    display: none;
  }

  .about-stats {
    gap: 10px;
  }

  .stat strong {
    font-size: 32px;
  }

  .stat span {
    font-size: 8px;
  }

  .portfolio-item img,
  .portfolio-large img,
  .portfolio-wide img {
    min-height: 420px;
  }

  .portfolio-overlay {
    padding: 25px;
  }

  .portfolio-overlay i {
    right: 25px;
    bottom: 25px;
  }

  .portfolio-footer {
    flex-direction: column;

    gap: 15px;
  }

  .service {
    grid-template-columns: 35px 1fr;
  }

  .service-arrow {
    display: none;
  }

  .service-main h3 {
    font-size: 30px;
  }

  .process-step {
    grid-template-columns: 40px 1fr;
  }

  .testimonial-section {
    padding: 100px 0;
  }

  .cta-section {
    padding: 110px 0;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }

  .lightbox {
    padding: 15px;
  }
}
