* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

:root {
  --black: #050403;

  --dark: #090705;

  --dark-soft: #100c09;

  --dark-card: #17100b;

  --wood-dark: #1c120c;

  --wood: #302015;

  --wood-light: #4c3020;

  --gold: #b47f46;

  --gold-light: #d0a06b;

  --white: #f5eee7;

  --gray: #a79a8d;

  --border-dark: rgba(208, 160, 106, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);

  color: var(--white);

  font-family: "Tajawal", sans-serif;

  font-weight: 500;

  overflow-x: hidden;
}

img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;
}

a {
  color: inherit;

  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--gold-light);

  font-weight: 700;
}

.section-label {
  display: block;

  margin-bottom: 22px;

  color: var(--gold-light);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* Header */

.main-header {
  position: absolute;

  top: 0;

  left: 0;

  z-index: 100;

  width: 100%;

  min-height: 100px;

  padding: 0 5vw;

  display: grid;

  grid-template-columns: 220px 1fr 220px;

  align-items: center;

  background: linear-gradient(
    to bottom,

    rgba(4, 3, 2, 0.99),
    rgba(8, 5, 3, 0.9),
    rgba(8, 5, 3, 0.12)
  );

  border-bottom: 1px solid var(--border-dark);
}

.logo {
  width: max-content;

  display: flex;

  flex-direction: column;

  align-items: center;

  line-height: 1;
}

.logo span {
  font-size: 34px;

  font-weight: 900;

  letter-spacing: 5px;
}

.logo small {
  margin-top: 8px;

  color: var(--gold-light);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 4px;
}

.main-nav {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 30px;
}

.main-nav a {
  position: relative;

  color: #f1e7dd;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -10px;

  width: 0;

  height: 1px;

  background: var(--gold-light);

  transition: 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 16px;
}

.header-actions button {
  width: 40px;

  height: 40px;

  border: 0;

  background: transparent;

  color: var(--white);
}

.header-button {
  min-height: 45px;

  padding: 0 18px;

  display: flex;

  align-items: center;

  border: 1px solid var(--gold-light);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.menu-button {
  display: none;

  justify-self: end;

  border: 0;

  background: transparent;

  color: var(--white);

  font-size: 23px;
}

/* Buttons */

.primary-button {
  min-width: 220px;

  min-height: 58px;

  padding: 0 24px;

  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  background: var(--gold);

  border: 1px solid var(--gold);

  color: var(--black);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition: 0.3s ease;
}

.primary-button:hover {
  background: transparent;

  color: var(--gold-light);
}

.secondary-button {
  min-width: 220px;

  min-height: 58px;

  padding: 0 24px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.5);

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  padding-bottom: 8px;

  border-bottom: 1px solid var(--border-dark);

  color: var(--gold-light);

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* Hero */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(3, 2, 1, 0.97) 0%,

      rgba(8, 5, 3, 0.88) 40%,

      rgba(15, 9, 5, 0.5) 70%,

      rgba(0, 0, 0, 0.25) 100%
    ),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2200&q=95")
      center / cover no-repeat;
}

.hero::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,

    rgba(3, 2, 1, 0.82),
    transparent 45%
  );
}

.hero-content {
  position: relative;

  z-index: 2;

  width: min(850px, 62vw);

  margin-left: 7vw;

  padding-top: 70px;
}

.hero h1 {
  max-width: 850px;

  font-size: clamp(64px, 7vw, 112px);

  line-height: 0.96;

  letter-spacing: -5px;

  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
  display: block;
}

.hero-content > p {
  max-width: 600px;

  margin: 32px 0;

  color: #d0c4b7;

  font-size: 16px;

  font-weight: 500;

  line-height: 1.9;
}

.hero-buttons {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;

  z-index: 3;

  right: 5vw;

  bottom: 38px;

  display: flex;

  background: rgba(7, 5, 3, 0.86);

  border: 1px solid var(--border-dark);

  backdrop-filter: blur(12px);
}

.stat-item {
  min-width: 180px;

  padding: 24px 30px;

  border-right: 1px solid var(--border-dark);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;

  margin-bottom: 5px;

  color: var(--gold-light);

  font-size: 28px;

  font-weight: 800;
}

.stat-item span {
  color: #c3b7ab;

  font-size: 10px;

  font-weight: 600;

  text-transform: uppercase;
}

/* Intro */

.intro-section {
  padding: 110px 7vw;

  display: grid;

  grid-template-columns: 1.25fr 0.75fr;

  gap: 10vw;

  background:
    radial-gradient(
      circle at 10% 20%,

      rgba(76, 48, 32, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #17100b, #090604 65%);

  border-top: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);
}

.intro-heading h2 {
  max-width: 850px;

  font-size: clamp(48px, 5.5vw, 84px);

  line-height: 1.03;

  letter-spacing: -3px;
}

.intro-content {
  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: flex-start;
}

.intro-content p {
  margin-bottom: 32px;

  color: var(--gray);

  font-size: 15px;

  line-height: 2;
}

/* Featured Kitchen */

.featured-section {
  min-height: 820px;

  display: grid;

  grid-template-columns: 58% 42%;

  background: linear-gradient(145deg, var(--wood-dark), var(--dark) 65%);
}

.featured-image {
  position: relative;

  min-height: 820px;
}

.featured-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.56),
    transparent 55%
  );
}

.image-number {
  position: absolute;

  z-index: 2;

  left: 40px;

  bottom: 35px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;
}

.featured-content {
  padding: 90px 6vw;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.featured-content h2 {
  margin-bottom: 28px;

  font-size: clamp(50px, 5vw, 80px);

  line-height: 1;

  letter-spacing: -3px;
}

.featured-content > p {
  margin-bottom: 30px;

  color: var(--gray);

  font-size: 14px;

  line-height: 2;
}

.feature-list {
  margin-bottom: 38px;
}

.feature-item {
  padding: 17px 0;

  display: flex;

  align-items: center;

  gap: 15px;

  border-bottom: 1px solid var(--border-dark);

  color: #e0d4c8;

  font-size: 13px;

  font-weight: 600;
}

.feature-item i {
  color: var(--gold);
}

/* Kitchen Styles */

.styles-section {
  padding: 115px 5vw;

  background: var(--black);
}

.section-heading {
  margin-bottom: 55px;
}

.centered-heading {
  max-width: 900px;

  margin-left: auto;

  margin-right: auto;

  text-align: center;
}

.section-heading h2 {
  font-size: clamp(50px, 5vw, 80px);

  line-height: 1.04;

  letter-spacing: -3px;
}

.section-heading > p {
  max-width: 620px;

  margin: 24px auto 0;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.styles-grid {
  display: grid;

  grid-template-columns: 1.25fr 0.75fr 0.75fr;

  gap: 12px;
}

.style-card {
  position: relative;

  min-height: 580px;

  overflow: hidden;
}

.style-card img {
  transition: transform 0.7s ease;
}

.style-card:hover img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.94),
    transparent 65%
  );
}

.style-card-content {
  position: absolute;

  z-index: 2;

  left: 30px;

  right: 30px;

  bottom: 30px;
}

.style-card-content span {
  color: var(--gold-light);

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;
}

.style-card-content h3 {
  margin: 10px 0;

  font-size: 28px;

  font-weight: 800;
}

.style-card-content p {
  max-width: 280px;

  color: #c4b8ac;

  font-size: 12px;

  line-height: 1.7;
}

.style-card-content i {
  position: absolute;

  right: 0;

  bottom: 0;

  width: 42px;

  height: 42px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.4);

  border-radius: 50%;
}

/* Kitchen Details */

.kitchen-details-section {
  min-height: 780px;

  display: grid;

  grid-template-columns: 48% 52%;

  background:
    radial-gradient(
      circle at 10% 50%,

      rgba(76, 48, 32, 0.25),
      transparent 35%
    ),
    var(--dark-soft);
}

.kitchen-details-content {
  padding: 90px 6vw;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.kitchen-details-content h2 {
  margin-bottom: 28px;

  font-size: clamp(50px, 5vw, 80px);

  line-height: 1;

  letter-spacing: -3px;
}

.kitchen-details-content > p {
  margin-bottom: 35px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.details-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--border-dark);

  border-left: 1px solid var(--border-dark);
}

.detail-box {
  min-height: 190px;

  padding: 25px;

  border-right: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);
}

.detail-box i {
  margin-bottom: 22px;

  color: var(--gold-light);

  font-size: 27px;
}

.detail-box h3 {
  margin-bottom: 10px;

  font-size: 17px;
}

.detail-box p {
  color: var(--gray);

  font-size: 11px;

  line-height: 1.8;
}

.kitchen-details-image {
  min-height: 780px;
}

/* Dressing */

.dressing-section {
  min-height: 850px;

  display: grid;

  grid-template-columns: 44% 56%;

  background:
    radial-gradient(
      circle at 15% 40%,

      rgba(76, 48, 32, 0.2),
      transparent 35%
    ),
    linear-gradient(135deg, #120d09, #070504);

  border-top: 1px solid var(--border-dark);
}

.dressing-content {
  padding: 100px 6vw;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.dressing-content h2 {
  margin-bottom: 28px;

  font-size: clamp(50px, 5vw, 82px);

  line-height: 1.02;

  letter-spacing: -3px;
}

.dressing-content > p {
  margin-bottom: 38px;

  color: var(--gray);

  font-size: 14px;

  line-height: 2;
}

.dressing-details {
  margin-bottom: 40px;
}

.dressing-detail {
  padding: 20px 0;

  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 20px;

  border-bottom: 1px solid var(--border-dark);
}

.dressing-detail > strong {
  color: var(--gold-light);

  font-size: 13px;
}

.dressing-detail h3 {
  margin-bottom: 7px;

  font-size: 18px;
}

.dressing-detail p {
  color: var(--gray);

  font-size: 12px;

  line-height: 1.8;
}

.dressing-image {
  position: relative;

  min-height: 850px;
}

.image-badge {
  position: absolute;

  left: 35px;

  bottom: 35px;

  min-width: 180px;

  padding: 22px;

  display: flex;

  flex-direction: column;

  background: rgba(8, 6, 4, 0.86);

  border: 1px solid var(--border-dark);

  backdrop-filter: blur(12px);
}

.image-badge strong {
  margin-bottom: 5px;

  color: var(--gold-light);

  font-size: 22px;
}

.image-badge span {
  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}

/* Gallery */

.gallery-section {
  padding: 110px 5vw;

  background: var(--black);
}

.gallery-header {
  margin-bottom: 45px;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 30px;
}

.gallery-header h2 {
  font-size: clamp(50px, 5vw, 78px);

  line-height: 1;

  letter-spacing: -3px;
}

.gallery-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  grid-template-rows: repeat(2, 330px);

  gap: 12px;
}

.gallery-item {
  position: relative;

  overflow: hidden;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;

  inset: 0;

  padding: 28px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.88),
    transparent 55%
  );
}

.gallery-overlay h3 {
  margin-bottom: 5px;

  font-size: 24px;
}

.gallery-overlay span {
  color: var(--gold-light);

  font-size: 10px;

  font-weight: 700;

  text-transform: uppercase;
}

/* Solutions */

.solutions-section {
  padding: 115px 5vw;

  background: linear-gradient(145deg, #100b08, #050403);
}

.solutions-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--border-dark);

  border-left: 1px solid var(--border-dark);
}

.solution-card {
  position: relative;

  min-height: 420px;

  padding: 35px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  background: rgba(37, 24, 16, 0.24);

  border-right: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);

  transition: 0.4s ease;
}

.solution-card:hover,
.featured-solution {
  background: linear-gradient(145deg, #392418, #15100b);

  transform: translateY(-8px);
}

.solution-number {
  color: var(--gold);

  font-size: 10px;

  font-weight: 700;
}

.solution-icon {
  margin: 60px 0 28px;

  color: var(--gold-light);

  font-size: 38px;
}

.solution-card h3 {
  margin-bottom: 15px;

  font-size: 25px;
}

.solution-card p {
  color: var(--gray);

  font-size: 12px;

  line-height: 1.8;
}

.solution-link {
  margin-top: auto;

  display: flex;

  align-items: center;

  gap: 14px;

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 700;

  text-transform: uppercase;
}

/* Why Us */

.why-us-section {
  min-height: 900px;

  display: grid;

  grid-template-columns: 42% 58%;

  background: var(--dark);
}

.why-us-image {
  min-height: 900px;
}

.why-us-content {
  padding: 100px 6vw;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.why-us-content h2 {
  font-size: clamp(50px, 5vw, 80px);

  line-height: 1;

  letter-spacing: -3px;
}

.why-us-intro {
  max-width: 680px;

  margin: 28px 0 45px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.advantages-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--border-dark);

  border-left: 1px solid var(--border-dark);
}

.advantage-item {
  min-height: 180px;

  padding: 26px;

  display: grid;

  grid-template-columns: 42px 1fr;

  gap: 18px;

  border-right: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);
}

.advantage-item > span {
  color: var(--gold-light);

  font-size: 11px;

  font-weight: 700;
}

.advantage-item h3 {
  margin-bottom: 10px;

  font-size: 17px;
}

.advantage-item p {
  color: var(--gray);

  font-size: 11px;

  line-height: 1.8;
}

/* Process */

.process-section {
  padding: 115px 5vw;

  background:
    radial-gradient(
      circle at 50% 0,

      rgba(76, 48, 32, 0.2),
      transparent 35%
    ),
    var(--dark);
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);
}

.process-item {
  min-height: 310px;

  padding: 30px;

  background: rgba(41, 27, 18, 0.24);

  border-top: 1px solid var(--border-dark);

  border-right: 1px solid var(--border-dark);
}

.process-item:first-child {
  border-left: 1px solid var(--border-dark);
}

.process-item > span {
  color: var(--gold);

  font-size: 11px;

  font-weight: 700;
}

.process-item > i {
  display: block;

  margin: 60px 0 28px;

  color: var(--gold-light);

  font-size: 37px;
}

.process-item h3 {
  margin-bottom: 12px;

  font-size: 21px;
}

.process-item p {
  color: var(--gray);

  font-size: 12px;

  line-height: 1.8;
}

/* About */

.about-section {
  min-height: 730px;

  display: grid;

  grid-template-columns: 42% 58%;

  background: linear-gradient(145deg, var(--wood-dark), var(--dark));
}

.about-content {
  padding: 90px 6vw;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.about-content h2 {
  margin-bottom: 28px;

  font-size: clamp(50px, 5vw, 80px);

  line-height: 1;

  letter-spacing: -3px;
}

.about-content p {
  margin-bottom: 18px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.about-content .primary-button {
  margin-top: 20px;
}

.about-image {
  position: relative;

  min-height: 730px;
}

.experience-card {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 260px;

  min-height: 185px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--gold);

  color: var(--black);
}

.experience-card strong {
  font-size: 55px;

  font-weight: 900;
}

.experience-card span {
  font-size: 11px;

  font-weight: 700;

  line-height: 1.6;

  text-transform: uppercase;
}

/* CTA */

.cta-section {
  position: relative;

  min-height: 650px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=90")
    center / cover no-repeat;
}

.cta-overlay {
  position: absolute;

  inset: 0;

  background: rgba(3, 2, 1, 0.84);
}

.cta-content {
  position: relative;

  z-index: 2;

  width: min(900px, 90%);
}

.cta-content h2 {
  font-size: clamp(52px, 6vw, 95px);

  line-height: 1;

  letter-spacing: -4px;
}

.cta-content p {
  max-width: 650px;

  margin: 28px auto 35px;

  color: #d2c6bb;

  font-size: 14px;

  line-height: 1.9;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 25px;

  flex-wrap: wrap;
}

.phone-button {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-size: 13px;

  font-weight: 700;
}

/* Footer */

.main-footer {
  padding: 80px 5vw 25px;

  background: #050403;
}

.footer-top {
  display: grid;

  grid-template-columns: 1.4fr repeat(3, 0.8fr) 1.25fr;

  gap: 45px;
}

.footer-brand > p {
  max-width: 330px;

  margin-top: 25px;

  color: var(--gray);

  font-size: 11px;

  line-height: 1.9;
}

.social-links {
  margin-top: 25px;

  display: flex;

  gap: 10px;
}

.social-links a {
  width: 34px;

  height: 34px;

  display: grid;

  place-items: center;

  border: 1px solid var(--border-dark);

  border-radius: 50%;
}

.footer-column,
.newsletter {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.footer-column h3,
.newsletter h3 {
  margin-bottom: 23px;

  color: var(--gold-light);

  font-size: 11px;

  font-weight: 800;

  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin-bottom: 12px;

  color: var(--gray);

  font-size: 11px;
}

.contact-column a,
.contact-column p {
  display: flex;

  align-items: center;

  gap: 10px;
}

.newsletter p {
  margin-bottom: 20px;

  color: var(--gray);

  font-size: 11px;

  line-height: 1.8;
}

.newsletter form {
  width: 100%;

  display: flex;

  border: 1px solid var(--border-dark);
}

.newsletter input {
  width: 100%;

  min-width: 0;

  padding: 16px;

  border: 0;

  outline: 0;

  background: transparent;

  color: var(--white);
}

.newsletter button {
  width: 55px;

  border: 0;

  background: var(--gold);
}

.footer-bottom {
  margin-top: 70px;

  padding-top: 25px;

  display: flex;

  justify-content: space-between;

  border-top: 1px solid var(--border-dark);

  color: #776d64;

  font-size: 9px;
}

.footer-bottom div {
  display: flex;

  gap: 25px;
}

/* Floating Buttons */

.floating-contact {
  position: fixed;

  z-index: 200;

  right: 25px;

  bottom: 25px;

  display: flex;

  flex-direction: column;

  gap: 10px;
}

.floating-contact a {
  width: 52px;

  height: 52px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  font-size: 20px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-button {
  background: #25d366;
}

.floating-phone {
  background: var(--gold);

  color: var(--black);
}

/* Responsive */

@media (max-width: 1200px) {
  .main-header {
    grid-template-columns: 190px 1fr 180px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 9px;
  }

  .styles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .main-header {
    min-height: 80px;

    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    width: 86%;

    margin-left: 7%;
  }

  .hero h1 {
    font-size: clamp(55px, 13vw, 90px);

    letter-spacing: -3px;
  }

  .hero-stats {
    left: 7%;

    right: auto;

    bottom: 30px;
  }

  .stat-item {
    min-width: 140px;

    padding: 20px;
  }

  .intro-section,
  .featured-section,
  .kitchen-details-section,
  .dressing-section,
  .why-us-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .featured-image,
  .kitchen-details-image,
  .dressing-image,
  .why-us-image,
  .about-image {
    min-height: 600px;
  }

  .styles-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;

    grid-template-rows: repeat(3, 500px);
  }

  .gallery-tall {
    grid-row: auto;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand,
  .newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .logo span {
    font-size: 27px;
  }

  .logo small {
    font-size: 6px;
  }

  .hero {
    min-height: 850px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-content > p {
    font-size: 13px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-stats {
    left: 5%;

    right: 5%;

    width: 90%;

    overflow-x: auto;
  }

  .stat-item {
    min-width: 150px;
  }

  .intro-section,
  .featured-content,
  .kitchen-details-content,
  .dressing-content,
  .why-us-content,
  .about-content {
    padding: 75px 7vw;
  }

  .styles-section,
  .gallery-section,
  .solutions-section,
  .process-section {
    padding: 80px 5vw;
  }

  .intro-heading h2,
  .featured-content h2,
  .kitchen-details-content h2,
  .dressing-content h2,
  .why-us-content h2,
  .about-content h2,
  .section-heading h2,
  .gallery-header h2 {
    font-size: 45px;
  }

  .gallery-header {
    align-items: flex-start;

    flex-direction: column;
  }

  .details-grid,
  .solutions-grid,
  .advantages-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .newsletter {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 15px;
  }

  .floating-contact {
    right: 15px;

    bottom: 15px;
  }

  .floating-contact a {
    width: 47px;

    height: 47px;
  }
}
@media (max-width: 900px) {

    .main-header {
        position: relative;
    }

    .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1002;
        cursor: pointer;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85%, 360px);
        height: 100vh;

        background: #111;
        padding: 100px 35px 40px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;

        z-index: 1000;

        transition: right 0.35s ease;

        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    }

    .main-nav.mobile-open {
        right: 0;
    }

    .main-nav a {
        width: 100%;
        padding: 18px 0;

        color: #fff;
        font-size: 18px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a:hover {
        opacity: 0.7;
    }

    .menu-button {
        background: transparent;
        border: 0;
    }

    .menu-button i {
        font-size: 23px;
    }
}