* {
  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,
.main-nav a.active::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;

  transition: 0.3s ease;
}

.header-button:hover {
  background: var(--gold);

  color: var(--black);
}

.menu-button {
  display: none;

  justify-self: end;

  border: 0;

  background: transparent;

  color: var(--white);

  font-size: 23px;
}

/* Buttons */

.primary-button {
  min-width: 225px;

  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);
}

/* Hero */

.about-hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;
}

.hero-background {
  position: absolute;

  inset: 0;

  background: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2200&q=95")
    center / cover no-repeat;

  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 2, 1, 0.97),
      rgba(8, 5, 3, 0.82) 43%,

      rgba(8, 5, 3, 0.25) 78%
    ),
    linear-gradient(
      to top,

      rgba(3, 2, 1, 0.86),
      transparent 48%
    );
}

.hero-content {
  position: relative;

  z-index: 3;

  width: min(850px, 62vw);

  margin-left: 8vw;

  padding-top: 70px;
}

.breadcrumb {
  margin-bottom: 48px;

  display: flex;

  align-items: center;

  gap: 13px;

  color: #9f9387;

  font-size: 10px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.breadcrumb strong {
  color: var(--gold-light);
}

.hero-content h1 {
  max-width: 900px;

  font-size: clamp(70px, 8vw, 130px);

  line-height: 0.92;

  letter-spacing: -6px;

  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
  display: block;
}

.hero-content > p {
  max-width: 620px;

  margin: 34px 0;

  color: #d2c7bb;

  font-size: 16px;

  line-height: 1.9;
}

.hero-information {
  position: absolute;

  z-index: 4;

  right: 5vw;

  bottom: 35px;

  display: flex;

  background: rgba(7, 5, 3, 0.86);

  border: 1px solid var(--border-dark);

  backdrop-filter: blur(14px);
}

.hero-information > div {
  min-width: 190px;

  padding: 23px 28px;

  border-right: 1px solid var(--border-dark);
}

.hero-information > div:last-child {
  border-right: 0;
}

.hero-information small {
  display: block;

  margin-bottom: 8px;

  color: #94887d;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.hero-information strong {
  font-size: 12px;

  font-weight: 700;
}

.vertical-social {
  position: absolute;

  z-index: 4;

  left: 2.5vw;

  top: 50%;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 15px;

  transform: translateY(-50%);
}

.vertical-social a {
  color: #b3a79b;

  font-size: 12px;
}

.vertical-social span {
  width: 1px;

  height: 60px;

  background: var(--border-dark);
}

.vertical-social small {
  writing-mode: vertical-rl;

  color: #81766c;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;

  z-index: 4;

  left: 8vw;

  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 15px;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* Story */

.story-section {
  min-height: 950px;

  padding: 120px 6vw;

  display: grid;

  grid-template-columns: 43% 57%;

  gap: 6vw;

  background:
    radial-gradient(
      circle at 10% 20%,

      rgba(76, 48, 32, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, #17100b, #080604 68%);
}

.story-content {
  display: flex;

  flex-direction: column;

  justify-content: center;
}

.story-content h2 {
  margin-bottom: 32px;

  font-size: clamp(52px, 5.5vw, 86px);

  line-height: 1;

  letter-spacing: -4px;
}

.story-content p {
  margin-bottom: 22px;

  color: var(--gray);

  font-size: 14px;

  line-height: 2;
}

.story-content .story-lead {
  color: #ded3c8;

  font-size: 17px;

  font-weight: 600;
}

.signature-text {
  margin-top: 25px;

  padding: 25px 0 25px 28px;

  display: flex;

  flex-direction: column;

  gap: 8px;

  border-left: 2px solid var(--gold);
}

.signature-text span {
  color: var(--gray);

  font-size: 12px;
}

.signature-text strong {
  color: var(--gold-light);

  font-size: 18px;
}

.story-visual {
  position: relative;

  min-height: 720px;
}

.story-image-main {
  position: absolute;

  top: 0;

  right: 0;

  width: 78%;

  height: 82%;
}

.story-image-small {
  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 2;

  width: 42%;

  height: 48%;

  border: 10px solid #0c0906;
}

.story-year {
  position: absolute;

  z-index: 3;

  right: 0;

  bottom: 0;

  width: 220px;

  min-height: 150px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--gold);

  color: var(--black);
}

.story-year strong {
  font-size: 47px;

  font-weight: 900;
}

.story-year span {
  font-size: 10px;

  font-weight: 700;

  text-transform: uppercase;

  line-height: 1.5;
}

/* Philosophy */

.philosophy-section {
  position: relative;

  min-height: 820px;

  padding: 100px 6vw;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  text-align: center;

  background: #040302;
}

.philosophy-watermark {
  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  color: rgba(255, 255, 255, 0.025);

  font-size: 22vw;

  font-weight: 900;

  letter-spacing: 18px;

  white-space: nowrap;
}

.philosophy-content {
  position: relative;

  z-index: 2;

  max-width: 1000px;
}

.philosophy-small {
  margin-bottom: 22px;

  color: #82766b;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;
}

.philosophy-content h2 {
  margin-bottom: 45px;

  font-size: clamp(60px, 7vw, 110px);

  line-height: 0.95;

  letter-spacing: -5px;
}

.philosophy-lines {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.philosophy-lines p {
  color: #a79d93;

  font-size: clamp(18px, 2vw, 27px);

  font-weight: 600;
}

.philosophy-lines strong {
  color: var(--gold-light);

  font-weight: 900;
}

/* Mission */

.mission-section {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  background: var(--dark);
}

.mission-card {
  position: relative;

  min-height: 650px;

  padding: 90px 7vw;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background:
    radial-gradient(
      circle at 10% 10%,

      rgba(76, 48, 32, 0.25),
      transparent 35%
    ),
    var(--wood-dark);

  border-right: 1px solid var(--border-dark);
}

.vision-card {
  background:
    radial-gradient(
      circle at 90% 10%,

      rgba(76, 48, 32, 0.18),
      transparent 35%
    ),
    var(--dark);
}

.mission-number {
  position: absolute;

  right: 40px;

  top: 35px;

  color: rgba(208, 160, 107, 0.18);

  font-size: 80px;

  font-weight: 900;
}

.mission-icon {
  margin-bottom: 38px;

  color: var(--gold-light);

  font-size: 45px;
}

.mission-card h2 {
  margin-bottom: 28px;

  font-size: clamp(48px, 4.5vw, 72px);

  line-height: 1.02;

  letter-spacing: -3px;
}

.mission-card p {
  color: var(--gray);

  font-size: 14px;

  line-height: 2;
}

/* Why */

.why-section {
  padding: 120px 5vw;

  background: linear-gradient(145deg, #100b08, #050403);
}

.section-heading {
  max-width: 900px;

  margin: 0 auto 60px;

  text-align: center;
}

.section-heading h2 {
  font-size: clamp(52px, 5.5vw, 86px);

  line-height: 1;

  letter-spacing: -4px;
}

.section-heading p {
  max-width: 650px;

  margin: 24px auto 0;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border-dark);

  border-left: 1px solid var(--border-dark);
}

.value-card {
  position: relative;

  min-height: 390px;

  padding: 35px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  background: rgba(37, 24, 16, 0.18);

  border-right: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);

  transition: 0.4s ease;
}

.value-card:hover,
.featured-value {
  background: linear-gradient(145deg, #392418, #15100b);

  transform: translateY(-7px);
}

.value-number {
  color: var(--gold);

  font-size: 10px;

  font-weight: 700;
}

.value-icon {
  margin: 60px 0 28px;

  color: var(--gold-light);

  font-size: 37px;
}

.value-card h3 {
  margin-bottom: 14px;

  font-size: 24px;
}

.value-card p {
  color: var(--gray);

  font-size: 12px;

  line-height: 1.9;
}

/* Craftsmanship */

.craft-section {
  min-height: 850px;

  display: grid;

  grid-template-columns: 58% 42%;

  background: var(--dark);
}

.craft-image {
  position: relative;

  min-height: 850px;
}

.craft-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.85),
    transparent 55%
  );
}

.craft-image-label {
  position: absolute;

  left: 45px;

  bottom: 40px;

  display: flex;

  flex-direction: column;

  gap: 7px;
}

.craft-image-label span {
  color: var(--gold-light);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.craft-image-label strong {
  font-size: 27px;
}

.craft-content {
  padding: 90px 6vw;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background:
    radial-gradient(
      circle at 10% 40%,

      rgba(76, 48, 32, 0.22),
      transparent 35%
    ),
    var(--dark-soft);
}

.craft-content h2 {
  margin-bottom: 30px;

  font-size: clamp(52px, 5vw, 80px);

  line-height: 1;

  letter-spacing: -4px;
}

.craft-content > p {
  margin-bottom: 20px;

  color: var(--gray);

  font-size: 14px;

  line-height: 2;
}

.craft-points {
  margin-top: 20px;
}

.craft-points > div {
  padding: 16px 0;

  display: flex;

  align-items: center;

  gap: 14px;

  border-bottom: 1px solid var(--border-dark);

  color: #ddd1c5;

  font-size: 13px;

  font-weight: 600;
}

.craft-points i {
  color: var(--gold-light);
}

/* Numbers */

.numbers-section {
  padding: 95px 5vw;

  background:
    linear-gradient(rgba(27, 17, 11, 0.94), rgba(10, 7, 5, 0.96)),
    url("https://images.unsplash.com/photo-1531835551805-16d864c8d311?auto=format&fit=crop&w=2200&q=85")
      center / cover no-repeat;
}

.numbers-intro {
  max-width: 850px;

  margin-bottom: 55px;
}

.numbers-intro h2 {
  font-size: clamp(50px, 5vw, 80px);

  line-height: 1;

  letter-spacing: -4px;
}

.numbers-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--border-dark);

  border-left: 1px solid var(--border-dark);
}

.number-item {
  min-height: 220px;

  padding: 35px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  border-right: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);
}

.number-item strong {
  margin-bottom: 8px;

  color: var(--gold-light);

  font-size: clamp(48px, 5vw, 75px);

  font-weight: 900;
}

.number-item span {
  color: #b8ada2;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}

/* Process */

.process-section {
  padding: 120px 6vw;

  display: grid;

  grid-template-columns: 38% 62%;

  gap: 7vw;

  background:
    radial-gradient(
      circle at 10% 0,

      rgba(76, 48, 32, 0.2),
      transparent 35%
    ),
    var(--dark);
}

.process-header {
  position: sticky;

  top: 100px;

  height: max-content;
}

.process-header h2 {
  margin-bottom: 25px;

  font-size: clamp(50px, 5vw, 80px);

  line-height: 1;

  letter-spacing: -4px;
}

.process-header p {
  color: var(--gray);

  font-size: 14px;

  line-height: 2;
}

.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: "";

  position: absolute;

  left: 44px;

  top: 0;

  bottom: 0;

  width: 1px;

  background: var(--border-dark);
}

.process-step {
  position: relative;

  min-height: 180px;

  padding: 30px 25px 30px 110px;

  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 22px;

  border-bottom: 1px solid var(--border-dark);
}

.process-number {
  position: absolute;

  left: 0;

  top: 34px;

  width: 88px;

  height: 88px;

  display: grid;

  place-items: center;

  background: var(--dark-card);

  border: 1px solid var(--border-dark);

  border-radius: 50%;

  color: var(--gold-light);

  font-size: 12px;

  font-weight: 800;
}

.process-icon {
  color: var(--gold-light);

  font-size: 30px;
}

.process-step h3 {
  margin-bottom: 10px;

  font-size: 22px;
}

.process-step p {
  max-width: 560px;

  color: var(--gray);

  font-size: 12px;

  line-height: 1.9;
}

/* Materials */

.materials-section {
  padding: 120px 5vw;

  background: #050403;
}

.materials-heading {
  max-width: 850px;

  margin-bottom: 55px;
}

.materials-heading h2 {
  margin-bottom: 24px;

  font-size: clamp(52px, 5.5vw, 86px);

  line-height: 1;

  letter-spacing: -4px;
}

.materials-heading p {
  max-width: 600px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.materials-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;
}

.material-card {
  position: relative;

  min-height: 470px;

  overflow: hidden;
}

.material-card img {
  transition: transform 0.7s ease;
}

.material-card:hover img {
  transform: scale(1.07);
}

.material-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.9),
    transparent 60%
  );
}

.material-content {
  position: absolute;

  left: 28px;

  right: 28px;

  bottom: 28px;
}

.material-content span {
  display: block;

  margin-bottom: 8px;

  color: var(--gold-light);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}

.material-content h3 {
  font-size: 25px;
}

/* Specialization */

.specialization-section {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.specialization-card {
  position: relative;

  min-height: 720px;

  display: flex;

  align-items: flex-end;

  overflow: hidden;

  background-size: cover;

  background-position: center;
}

.kitchen-specialization {
  background-image: url("https://images.unsplash.com/photo-1556912173-3bb406ef7e77?auto=format&fit=crop&w=1600&q=90");
}

.dressing-specialization {
  background-image: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1600&q=90");
}

.specialization-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.08) 70%
  );
}

.specialization-content {
  position: relative;

  z-index: 2;

  width: 100%;

  padding: 55px;
}

.specialization-content > span {
  color: var(--gold-light);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.specialization-content h2 {
  margin: 12px 0 18px;

  font-size: clamp(45px, 5vw, 74px);
}

.specialization-content p {
  max-width: 520px;

  margin-bottom: 25px;

  color: #c4b8ac;

  font-size: 13px;

  line-height: 1.8;
}

.specialization-content a {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* Showroom */

.showroom-section {
  position: relative;

  min-height: 780px;

  padding: 100px 7vw;

  display: flex;

  align-items: center;

  background: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=2200&q=90")
    center / cover no-repeat;
}

.showroom-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(3, 2, 1, 0.95),
    rgba(8, 5, 3, 0.62),
    rgba(8, 5, 3, 0.18)
  );
}

.showroom-content {
  position: relative;

  z-index: 2;

  max-width: 750px;
}

.showroom-content h2 {
  margin-bottom: 28px;

  font-size: clamp(60px, 7vw, 105px);

  line-height: 0.95;

  letter-spacing: -5px;
}

.showroom-content p {
  max-width: 580px;

  margin-bottom: 32px;

  color: #d1c5b9;

  font-size: 14px;

  line-height: 1.9;
}

.showroom-details {
  position: absolute;

  z-index: 3;

  right: 4vw;

  bottom: 35px;

  display: flex;

  background: rgba(7, 5, 3, 0.86);

  border: 1px solid var(--border-dark);

  backdrop-filter: blur(12px);
}

.showroom-details div {
  min-width: 190px;

  padding: 24px;

  display: flex;

  align-items: center;

  gap: 12px;

  border-right: 1px solid var(--border-dark);
}

.showroom-details div:last-child {
  border-right: 0;
}

.showroom-details i {
  color: var(--gold-light);
}

.showroom-details span {
  font-size: 11px;

  font-weight: 700;
}

/* Final CTA */

.final-cta {
  min-height: 680px;

  padding: 90px 6vw;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  background:
    radial-gradient(
      circle at 50% 50%,

      rgba(76, 48, 32, 0.25),
      transparent 38%
    ),
    #050403;
}

.cta-content {
  max-width: 950px;
}

.cta-content h2 {
  font-size: clamp(60px, 7vw, 110px);

  line-height: 0.95;

  letter-spacing: -5px;
}

.cta-content > p {
  max-width: 680px;

  margin: 30px auto 38px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.cta-actions {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 25px;

  flex-wrap: wrap;
}

.cta-phone {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-size: 13px;

  font-weight: 700;
}

/* Footer */

.main-footer {
  padding: 80px 5vw 25px;

  background: #050403;

  border-top: 1px solid var(--border-dark);
}

.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%;

  transition: 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);

  color: var(--black);
}

.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 Contact */

.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: 17px;
  }

  .main-nav a {
    font-size: 9px;
  }

  .values-grid,
  .materials-grid {
    grid-template-columns: repeat(2, 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-content {
    width: 86%;

    margin-left: 7%;
  }

  .hero-content h1 {
    font-size: clamp(58px, 14vw, 95px);
  }

  .hero-information {
    left: 7%;

    right: auto;

    max-width: 86%;

    overflow-x: auto;
  }

  .vertical-social,
  .scroll-indicator {
    display: none;
  }

  .story-section,
  .craft-section,
  .process-section {
    grid-template-columns: 1fr;
  }

  .story-visual,
  .craft-image {
    min-height: 650px;
  }

  .mission-section,
  .specialization-section {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-header {
    position: static;
  }

  .showroom-details {
    left: 5%;

    right: 5%;

    overflow-x: 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;
  }

  .about-hero {
    min-height: 900px;
  }

  .hero-content h1 {
    font-size: 54px;

    letter-spacing: -3px;
  }

  .hero-content > p {
    font-size: 13px;
  }

  .hero-information {
    left: 5%;

    width: 90%;
  }

  .hero-information > div {
    min-width: 170px;
  }

  .story-section,
  .why-section,
  .process-section,
  .materials-section {
    padding: 80px 6vw;
  }

  .story-content h2,
  .philosophy-content h2,
  .mission-card h2,
  .section-heading h2,
  .craft-content h2,
  .numbers-intro h2,
  .process-header h2,
  .materials-heading h2,
  .showroom-content h2,
  .cta-content h2 {
    font-size: 45px;

    letter-spacing: -2px;
  }

  .story-visual {
    min-height: 550px;
  }

  .story-image-main {
    width: 88%;

    height: 75%;
  }

  .story-image-small {
    width: 52%;

    height: 42%;
  }

  .story-year {
    width: 180px;

    min-height: 130px;
  }

  .mission-card {
    min-height: 560px;

    padding: 75px 7vw;
  }

  .values-grid,
  .materials-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 350px;
  }

  .craft-image,
  .craft-content {
    min-height: 650px;
  }

  .craft-content {
    padding: 75px 7vw;
  }

  .process-step {
    padding-left: 90px;

    grid-template-columns: 1fr;
  }

  .process-number {
    width: 70px;

    height: 70px;
  }

  .process-timeline::before {
    left: 35px;
  }

  .material-card {
    min-height: 430px;
  }

  .specialization-card {
    min-height: 620px;
  }

  .specialization-content {
    padding: 35px;
  }

  .showroom-section {
    min-height: 850px;

    padding: 80px 7vw;
  }

  .showroom-details {
    display: none;
  }

  .primary-button {
    width: 100%;
  }

  .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;
  }
}
