* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #f7f3ed;
  color: #29231f;
  font-size: 1.05rem;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

section {
  padding: 100px 8%;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #b79a6b;
}

/* =========================
   HERO — REFINED TYPOGRAPHY
========================= */

.hero {
  min-height: 92vh;
  padding: 0 8%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(33, 28, 24, 0.88) 0%,
      rgba(33, 28, 24, 0.58) 45%,
      rgba(33, 28, 24, 0.18) 100%
    ),
    url("images/hero.jpg");

  background-size: cover;
  background-position: center;

  color: #f8f1e6;
}

.hero-content {
  max-width: 700px;
  padding-top: 30px;
}

/* Small editorial label */

.hero .eyebrow {
  margin-bottom: 28px;

  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;

  color: rgba(248, 241, 230, 0.72);
}

/* Main statement */

.hero h1 {
  max-width: 680px;
  margin-bottom: 30px;

  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 6.3vw, 6.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;

  color: #f8f1e6;
}

/* Supporting copy */

.hero-text {
  max-width: 470px;
  margin-bottom: 40px;

  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.015em;

  color: rgba(248, 241, 230, 0.68);
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 14px 26px;

  border: 1px solid rgba(248, 241, 230, 0.55);

  font-family: "DM Sans", sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

/* Primary */

.hero-buttons a:first-child {
  background: #f8f1e6;
  border-color: #f8f1e6;

  color: #29231f;
}

.hero-buttons a:first-child:hover {
  background: #d4b98a;
  border-color: #d4b98a;
}

/* Secondary */

.hero-buttons a:last-child {
  color: #f8f1e6;
}

.hero-buttons a:last-child:hover {
  background: rgba(248, 241, 230, 0.08);
  border-color: rgba(212, 185, 138, 0.8);
}

/* =========================
   LUXURY NAVIGATION
========================= */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  padding: 28px 8%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1400px;
  margin: 0 auto;
}

/* Brand */

.logo {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;

  color: #fff8ed;

  white-space: nowrap;
}

/* Navigation links */

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;

  list-style: none;
}

.nav-links a {
  position: relative;

  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: rgba(255, 248, 237, 0.72);

  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #d8bd8d;

  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f8f1e6;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Consultation button */

.nav-btn {
  padding: 11px 19px;

  border: 1px solid rgba(248, 241, 230, 0.5);

  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #f8f1e6;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.nav-btn:hover {
  background: #f8f1e6;
  border-color: #f8f1e6;
  color: #29231f;
}

/* =========================
   ABOUT — EDITORIAL LUXURY
========================= */

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10%;
  align-items: center;

  padding: 140px 8%;

  background: #f7f3ed;
}

.about .section-heading {
  max-width: 650px;
}

.about .eyebrow {
  margin-bottom: 24px;

  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;

  color: #a4875b;
}

.about h2 {
  max-width: 620px;

  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;

  color: #29231f;
}

.about-content {
  max-width: 470px;

  padding-left: 40px;
  border-left: 1px solid rgba(164, 135, 91, 0.35);
}

.about-content p {
  margin-bottom: 28px;

  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.01em;

  color: rgba(41, 35, 31, 0.68);
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* =========================
   SERVICES — EDITORIAL
========================= */

.services {
  padding: 140px 8%;
  background: #29231f;
  color: #f8f1e6;
}

.services .section-heading {
  max-width: 700px;
  margin-bottom: 80px;
}

.services .eyebrow {
  margin-bottom: 22px;
  color: #d4b98a;
}

.services h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #f8f1e6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(248, 241, 230, 0.2);
}

.service-card {
  position: relative;
  padding: 42px 35px 48px 0;
  border-bottom: 1px solid rgba(248, 241, 230, 0.2);
}

.service-card:nth-child(odd) {
  padding-right: 60px;
  border-right: 1px solid rgba(248, 241, 230, 0.2);
}

.service-card:nth-child(even) {
  padding-left: 60px;
}

.service-card span {
  display: block;
  margin-bottom: 32px;

  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;

  color: #d4b98a;
}

.service-card h3 {
  margin-bottom: 18px;

  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;

  color: #f8f1e6;
}

.service-card p {
  max-width: 390px;

  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;

  color: rgba(248, 241, 230, 0.6);
}

.service-card {
  transition: padding 0.35s ease;
}

.service-card:hover {
  padding-left: 10px;
}

.service-card:nth-child(even):hover {
  padding-left: 70px;
}

/* =========================
   PORTFOLIO — EDITORIAL
========================= */

.portfolio {
  padding: 140px 8%;
  background: #f7f3ed;
}

.portfolio .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  margin-bottom: 75px;
}

.portfolio .eyebrow {
  margin-bottom: 20px;
  color: #a4875b;
}

.portfolio h2 {
  max-width: 650px;

  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;

  color: #29231f;
}

/* Image layout */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}

.portfolio-item {
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Editorial asymmetry */

.portfolio-item:nth-child(1) {
  grid-column: span 7;
  height: 620px;
}

.portfolio-item:nth-child(2) {
  grid-column: span 5;
  height: 460px;
  margin-top: 120px;
}

.portfolio-item:nth-child(3) {
  grid-column: span 5;
  height: 480px;
  margin-top: -20px;
}

.portfolio-item:nth-child(4) {
  grid-column: span 7;
  height: 620px;
  margin-top: 80px;
}

/* Image interaction */

.portfolio-item:hover img {
  transform: scale(1.035);
}

/* =========================
   CONTACT FORM
========================= */

.cta {
  padding: 150px 8%;
  background: #29231f;
  color: #f8f1e6;
}

.cta-heading {
  max-width: 800px;
  margin: 0 auto 75px;
  text-align: center;
}

.cta .eyebrow {
  margin-bottom: 28px;
  color: #d4b98a;
}

.cta h2 {
  margin-bottom: 28px;

  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.cta-heading > p:last-child {
  max-width: 480px;
  margin: 0 auto;

  font-size: 1rem;
  line-height: 1.8;

  color: rgba(248, 241, 230, 0.65);
}

/* Form */

.contact-form {
  max-width: 850px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 34px;
}

.form-group label {
  margin-bottom: 12px;

  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #d4b98a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 0;

  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(248, 241, 230, 0.3);

  border-radius: 0;
  outline: none;

  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;

  color: #f8f1e6;

  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #d4b98a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248, 241, 230, 0.35);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Select */

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #29231f;
  color: #f8f1e6;
}

/* Submit */

.contact-form button {
  display: block;
  margin: 15px auto 0;

  padding: 16px 34px;

  background: #f8f1e6;
  border: 1px solid #f8f1e6;

  font-family: "DM Sans", sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;

  color: #29231f;

  cursor: pointer;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.contact-form button:hover {
  background: #d4b98a;
  border-color: #d4b98a;
}

/* =========================
   FOOTER — QUIET LUXURY
========================= */

footer {
  padding: 55px 8% 35px;

  background: #29231f;
  border-top: 1px solid rgba(248, 241, 230, 0.12);

  color: #f8f1e6;
}

.footer-logo {
  margin-bottom: 12px;

  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;

  color: #f8f1e6;
}

footer p {
  margin-bottom: 8px;

  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;

  color: rgba(248, 241, 230, 0.5);
}

footer p:last-child {
  margin-top: 30px;
  margin-bottom: 0;

  font-size: 0.65rem;
  color: rgba(248, 241, 230, 0.35);
}

/* =========================
   RESPONSIVE — MOBILE POLISH
========================= */

@media (max-width: 900px) {
  /* Navigation */

  header {
    padding: 24px 6%;
  }

  nav {
    flex-wrap: wrap;
    gap: 22px;
  }

  .nav-links {
    gap: 22px;
  }

  /* General sections */

  section {
    padding: 90px 6%;
  }

  /* Hero */

  .hero {
    min-height: 90vh;
    padding: 120px 6% 80px;

    background-position: 58% center;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-text {
    max-width: 480px;
  }

  /* About */

  .about {
    grid-template-columns: 1fr;
    gap: 55px;

    padding: 100px 6%;
  }

  .about h2 {
    max-width: 650px;
  }

  .about-content {
    max-width: 600px;
    padding-left: 28px;
  }

  /* Services */

  .services {
    padding: 100px 6%;
  }

  .services .section-heading {
    margin-bottom: 60px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(odd),
  .service-card:nth-child(even) {
    padding: 38px 0;
    border-right: none;
  }

  .service-card:hover,
  .service-card:nth-child(even):hover {
    padding-left: 8px;
  }

  /* Portfolio */

  .portfolio {
    padding: 100px 6%;
  }

  .portfolio .section-heading {
    display: block;
    margin-bottom: 55px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-item,
  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(3),
  .portfolio-item:nth-child(4) {
    grid-column: auto;
    height: 500px;
    margin-top: 0;
  }

  /* Contact */

  .cta {
    padding: 110px 6%;
  }

  .cta-heading {
    margin-bottom: 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer */

  footer {
    padding: 45px 6% 30px;
  }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 600px) {
  /* Navigation */

  header {
    padding: 22px 5%;
  }

  nav {
    align-items: flex-start;
  }

  .logo {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  /* Hero */

  .hero {
    min-height: 100svh;
    padding: 150px 5% 70px;

    background-position: 62% center;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    margin-bottom: 24px;

    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.98;
  }

  .hero-text {
    margin-bottom: 32px;

    font-size: 0.86rem;
    line-height: 1.75;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  /* About */

  .about {
    padding: 85px 5%;
  }

  .about .eyebrow,
  .services .eyebrow,
  .portfolio .eyebrow,
  .cta .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
  }

  .about h2,
  .services h2,
  .portfolio h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .about-content {
    padding-left: 22px;
  }

  .about-content p {
    font-size: 0.86rem;
    line-height: 1.8;
  }

  /* Services */

  .services {
    padding: 85px 5%;
  }

  .service-card {
    padding: 34px 0;
  }

  .service-card span {
    margin-bottom: 22px;
  }

  .service-card h3 {
    font-size: 2rem;
  }

  .service-card p {
    font-size: 0.84rem;
  }

  /* Portfolio */

  .portfolio {
    padding: 85px 5%;
  }

  .portfolio-grid {
    gap: 14px;
  }

  .portfolio-item,
  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(3),
  .portfolio-item:nth-child(4) {
    height: 420px;
  }

  /* Contact */

  .cta {
    padding: 95px 5%;
  }

  .cta h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .cta-heading > p:last-child {
    font-size: 0.86rem;
  }

  .contact-form {
    width: 100%;
  }

  .form-group {
    margin-bottom: 28px;
  }

  .contact-form button {
    width: 100%;
  }

  /* Footer */

  footer {
    padding: 40px 5% 28px;
  }

  .footer-logo {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  footer p {
    font-size: 0.66rem;
  }
}

@media (max-width: 600px) {
  .portfolio-item img {
    object-position: center;
  }
}

/* =========================
   IPAD / TABLET POLISH
========================= */

@media (min-width: 768px) and (max-width: 1024px) {
  /* Navigation */

  header {
    padding: 26px 6%;
  }

  nav {
    gap: 25px;
  }

  .logo {
    font-size: 0.72rem;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.62rem;
  }

  .nav-btn {
    padding: 10px 15px;
    font-size: 0.58rem;
  }

  /* Hero */

  .hero {
    min-height: 90vh;
    padding: 120px 7% 90px;

    background-position: center;
  }

  .hero-content {
    max-width: 650px;
  }

  .hero h1 {
    max-width: 650px;

    font-size: clamp(4rem, 8vw, 5.5rem);
    line-height: 1;
  }

  .hero-text {
    max-width: 500px;
  }

  /* About */

  .about {
    grid-template-columns: 1fr 0.8fr;
    gap: 7%;

    padding: 120px 7%;
  }

  .about h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }

  .about-content {
    padding-left: 30px;
  }

  /* Services */

  .services {
    padding: 120px 7%;
  }

  .services h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }

  .service-card {
    padding: 40px 25px 45px 0;
  }

  .service-card:nth-child(odd) {
    padding-right: 35px;
  }

  .service-card:nth-child(even) {
    padding-left: 35px;
  }

  /* Portfolio */

  .portfolio {
    padding: 120px 7%;
  }

  .portfolio-grid {
    gap: 20px;
  }

  .portfolio-item:nth-child(1) {
    height: 500px;
  }

  .portfolio-item:nth-child(2) {
    height: 380px;
    margin-top: 100px;
  }

  .portfolio-item:nth-child(3) {
    height: 400px;
  }

  .portfolio-item:nth-child(4) {
    height: 500px;
    margin-top: 70px;
  }

  /* Contact */

  .cta {
    padding: 130px 7%;
  }

  .contact-form {
    max-width: 760px;
  }

  /* Footer */

  footer {
    padding: 50px 7% 32px;
  }
}
