/* =========================
   GLOBALT
========================= */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  background-color: #f7f2eb;
  color: #2f2a26;
}

a {
  color: inherit;
}

/* =========================
   GAMMEL TOP-LINE
   Skjult fordi ny header brukes
========================= */

.top-line {
  display: none;
}

.top-line a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 28px;
  color: #2f2a26;
  text-decoration: none;
  text-transform: uppercase;
}

.top-line a:hover {
  opacity: 0.7;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  height: 60px;
  background-color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;
}

.header-logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;

  color: #2f2a26;
  text-decoration: none;
}

.site-header .menu-toggle {
  position: absolute;
  left: 24px;

  display: none;

  background: none;
  border: none;
  font-size: 28px;
  color: #2f2a26;
  cursor: pointer;
}

.site-header .cart-link {
  position: absolute;
  right: 24px;

  display: flex;
  align-items: center;
  gap: 6px;

  color: #2f2a26;
  text-decoration: none;
}

.site-header a,
.site-header a:visited,
.site-header a:hover,
.site-header a:active {
  color: #2f2a26;
  text-decoration: none;
}

.cart-link {
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-link i {
  color: #2f2a26;
}

.cart-link:hover i {
  opacity: 0.7;
}

#cart-count {
  font-size: 14px;
  background-color: #2f2a26;
  color: white;
  border-radius: 50%;

  min-width: 20px;
  height: 20px;
  padding: 2px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   NAVIGASJON
========================= */

.navbar {
  position: sticky;
  top: 60px;
  z-index: 1500;

  background-color: #eee6dc;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  padding: 18px 30px;
}

.nav-left {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
}

.nav-right {
  display: none;
  align-items: center;
  min-width: 80px;
  justify-content: flex-end;
}

.navbar a {
  text-decoration: none;
  color: #2f2a26;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
}

.navbar a:hover {
  text-decoration: underline;
}

/* =========================
   HERO
========================= */

.hero {
  height: 300px;
  background-image: url("https://res.cloudinary.com/ddr47lhck/image/upload/Smykker-banner_voptbt.jpg");
  background-size: cover;
  background-position: 10% 90%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* =========================
   PRODUKTSEKSJONER
========================= */

.products {
  padding: 50px 30px;
  max-width: 1400px;
  margin: auto;

  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.products h2,
.sub-title,
.product-card h3,
.product-card p,
.product-card.simple h3,
.product-card.simple p {
  letter-spacing: 1px;
  font-weight: 300;
}

.products h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
}

.sub-title {
  text-align: center;
  margin: 60px 0 25px;
}

/* =========================
   PRODUKT-GRID
========================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-grid-5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.all-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* =========================
   PRODUKTKORT
========================= */

.product-card {
  background-color: rgba(234, 223, 206, 0.7);
  border-radius: 12px;
  overflow: hidden;

  text-decoration: none;
  color: #2f2a26;
  text-align: center;

  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card h3 {
  margin: 16px 16px 8px;
}

.product-card p {
  margin: 0 16px 20px;
}

/* =========================
   HOVER-BILDER PÅ FORSIDE
========================= */

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .hover-img {
  opacity: 1;
}

.product-card:hover .main-img {
  opacity: 0;
}

/* =========================
   ENKLE PRODUKTKORT
========================= */

.product-card.simple {
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.product-card.simple img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.product-card.simple h3 {
  margin: 12px 0 8px;
  font-size: 16px;
}

.product-card.simple p {
  margin: 0 0 10px;
  font-size: 14px;
}

/* =========================
   STORE BILDER
========================= */

.large-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 40px;
}

.large-image-card {
  position: relative;
}

.large-image-card img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
}

.large-image-button {
  background-color: rgba(255, 255, 255, 0.9);
  color: #2f2a26;
  text-decoration: none;

  padding: 8px 16px;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;

  border-radius: 4px;
  transition: background-color 0.3s ease;

  display: inline-block;
  text-align: center;
  line-height: 1.2;
  max-width: 160px;
}

.large-image-button:hover {
  background-color: #eee6dc;
}

.right-image-card .large-image-button {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);

  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 1px;
  z-index: 2;
}

/* =========================
   INSPIRASJON
========================= */

.inspirasjon {
  padding: 40px 0;
  background-color: #f7f2eb;
}

.inspirasjon-tekst {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 30px;
  color: #2f2a26;
}

.inspirasjon-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.inspirasjon-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.inspirasjon-gallery::-webkit-scrollbar {
  display: none;
}

.inspirasjon-gallery img {
  flex: 0 0 calc((100% - 60px) / 4);
  height: 420px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: transparent;
  border: none;

  font-size: 42px;
  cursor: pointer;
  color: #2f2a26;
  z-index: 10;
}

.carousel-btn.left {
  left: 0;
}

.carousel-btn.right {
  right: 0;
}

/* =========================
   PRODUKTSIDE
========================= */

.product-page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 30px;

  font-family: "Montserrat", sans-serif;
}

.product-page-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.product-page-image {
  flex: 1;
}

.product-page-image img {
  width: 100%;
  max-width: 600px;
  height: 700px;
  object-fit: cover;
  display: block;
}

.product-gallery {
  display: flex;
  gap: 20px;
  align-items: flex-start;

  flex: 0 0 750px;
}

.thumbnail-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thumbnail {
  width: 115px;
  height: 115px;
  object-fit: cover;

  cursor: pointer;
  border: 1px solid #bdb6ad;
  transition: 0.2s ease;
}

.thumbnail:hover {
  border: 1px solid #333;
}

.thumbnail.active {
  border: 2px solid #333;
}

.product-gallery .main-image-container {
  flex: 1;
}

.product-gallery .main-product-image {
  width: 100%;
  max-width: 820px;
  height: 500px;
  object-fit: cover;
  display: block;
}

.product-page-info {
  flex: 0.9;
  padding-top: 20px;
  max-width: 650px;
}

.product-category {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #7a6f66;
}

.product-page-info h1 {
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: 1px;
}

.product-price {
  font-size: 24px;
  margin-bottom: 25px;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.product-details {
  margin: 30px 0;
}

.product-details p {
  margin: 10px 0;
  font-size: 15px;
}

.buy-button {
  background-color: #2f2a26;
  color: white;
  border: none;

  padding: 16px 28px;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;

  cursor: pointer;
  transition: opacity 0.3s ease;
}

.buy-button:hover {
  opacity: 0.85;
}

/* =========================
   HANDLEKURV
========================= */

.cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px;

  font-family: "Montserrat", sans-serif;
}

.cart-page h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.cart-item {
  display: flex;
  gap: 25px;
  align-items: center;

  margin-bottom: 30px;
  padding-bottom: 20px;

  border-bottom: 1px solid #ddd0c2;
}

.cart-item img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  display: block;
}

.cart-item-info h3 {
  margin: 0 0 10px;
  font-weight: 400;
}

.cart-item-info p {
  margin: 0 0 12px;
}

.cart-item-info button {
  background-color: #2f2a26;
  color: white;
  border: none;

  padding: 10px 18px;

  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

#cart-total {
  margin-top: 40px;
  font-weight: 400;
}

.cart-shipping-note {
  margin: 25px 0 10px;
  text-align: center;
  font-size: 14px;
  color: #7a6f66;
  letter-spacing: 0.5px;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 0;
  padding: 0;

  text-align: center;
}

.empty-cart h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 400;
}

.empty-cart p {
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #7a6f66;
}

.empty-cart-icon {
  width: 200px;
  margin-bottom: 50px;
  opacity: 0.8;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cart-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* =========================
   VIDEO
========================= */

.video-section {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px 0;
}

.video-section video {
  width: 80%;
  max-width: 900px;
  height: auto;
  display: block;
}

/* =========================
   NYHETSBREV
========================= */

#newsletter-message {
  color: black;
  margin-top: 12px;
  font-size: 14px;
}

/* =========================
   FIRKANT-GRID
========================= */

.square-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.grid-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.grid-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* =========================
   ABOUT / OM OSS
========================= */

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;

  display: block;
  margin: 0 auto;
}

.about-text {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

.about-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 44px;
  color: #2f2a26;
}

.about-button {
  display: inline-block;
  margin-top: 25px;
}

.about-hero {
  margin-bottom: 80px;
}

/* =========================
   KATEGORI-BANNER
========================= */

.category-banner {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.category-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 68%;
}

.category-banner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: white;

  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 5px;
}

.halskjeder-page .category-banner img {
  object-position: center center;
}

/* =========================
   FOOTER
========================= */

.footer {
  background-color: #eee6dc;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}

.footer-luxury {
  background-color: #e7e2da;
  padding: 70px 55px 25px;
  color: #222;
  font-family: "Montserrat", sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  margin-bottom: 70px;
}

.footer-newsletter h2,
.footer-links h3 {
  font-family: serif;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer-newsletter h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 28px;
}

.footer-form {
  display: flex;
  align-items: center;

  border-bottom: 1px solid #999;
  max-width: 520px;
}

.footer-form input {
  flex: 1;
  border: none;
  background: transparent;

  padding: 14px 0;

  font-size: 14px;
  outline: none;
}

.footer-form button {
  border: none;
  background: transparent;

  font-size: 28px;
  cursor: pointer;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.footer-links h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

.footer-links a {
  display: block;

  color: #222;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.footer-brand {
  margin-top: 40px;
  border-top: 1px solid #d8d1c8;
  padding-top: 40px;
}

.footer-brand h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(50px, 12vw, 180px);
  letter-spacing: 2px;
  line-height: 0.85;

  text-align: left;
  margin: 0;

  color: #2f2a26;
}

.footer-bottom {
  border-top: 1px solid #d2ccc3;
  padding-top: 25px;

  display: flex;
  justify-content: space-between;

  font-size: 13px;
}

.footer-socials a {
  color: #222;
  text-decoration: none;
  margin-left: 20px;
}

/* =========================
   RESPONSIVE: TABLET
========================= */

@media (max-width: 1100px) {
  .product-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .all-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-page-container {
    flex-direction: column;
  }

  .product-gallery {
    width: 100%;
  }

  .product-gallery .main-product-image {
    max-width: 100%;
    height: auto;
  }

  .product-page-image img {
    max-width: 100%;
    height: auto;
  }

  .product-page-info {
    max-width: 100%;
  }
}

/* =========================
   RESPONSIVE: LITEN TABLET
========================= */

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .all-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    background-attachment: scroll;
  }

  .large-images {
    grid-template-columns: 1fr;
  }

  .large-image-card img {
    height: 500px;
  }

  .inspirasjon-gallery img {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .product-page {
    padding: 40px 20px;
  }

  .thumbnail {
    width: 90px;
    height: 90px;
  }

  .product-page-info h1 {
    font-size: 28px;
  }

  .product-page-image img {
    height: 500px;
  }
}

/* =========================
   RESPONSIVE: MOBIL
========================= */

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .all-products-grid {
    padding: 0;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .products {
    padding: 50px 15px;
    overflow: hidden;
  }

  .product-grid .image-wrapper img {
    height: 150px;
  }

  .product-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid-5 .product-card.simple img {
    height: 150px;
  }

  .all-products-grid .product-card.simple img {
    height: 150px;
  }

  .main-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .square-grid {
    grid-template-columns: 1fr;
  }

  .grid-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .hero {
    height: 260px;
    background-attachment: scroll;
  }

  .navbar {
    gap: 20px;
  }

  .large-images {
    padding: 20px;
  }

  .large-image-card img {
    height: 350px;
  }

  .inspirasjon-wrapper {
    padding: 0 20px;
  }

  .inspirasjon-gallery img {
    flex: 0 0 100%;
    height: 320px;
  }

  .product-gallery {
    flex-direction: column;
  }

  .thumbnail-column {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .thumbnail {
    width: 75px;
    height: 75px;
  }

  .product-gallery .main-product-image,
  .product-page-image img {
    width: 100%;
    height: auto;
  }
}

/* =========================
   RESPONSIVE: HEADER / NAV MOBIL
========================= */

@media (max-width: 768px) {
  .site-header {
    height: 60px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: sticky;
  }

  .site-header .header-logo {
    font-size: 28px;
    line-height: 1;
  }

  .site-header .menu-toggle {
    display: block;
    visibility: visible;

    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 1;
  }

  .site-header .cart-link {
    right: 16px;

    height: 40px;
    line-height: 1;
  }

  .navbar {
    position: sticky;
    top: 60px;
    left: 0;
    right: 0;

    height: 60px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;
  }

  .nav-left {
    display: none;

    position: absolute;
    top: 60px;
    left: 0;

    width: 100%;

    flex-direction: column;
    gap: 0;

    text-align: center;
    background-color: #eee6dc;
    padding: 18px 0;
  }

  .nav-left.active {
    display: flex;
  }

  .nav-left a {
    padding: 14px 0;
    font-size: 15px;
  }

  .nav-right {
    display: none;
  }
}

/* =========================
   RESPONSIVE: FOOTER MOBIL
========================= */

@media (max-width: 768px) {
  .footer-luxury {
    padding: 45px 25px 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links h3 {
    font-size: 22px;
  }

  .footer-brand h1 {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-socials a {
    margin-left: 0;
    margin-right: 15px;
  }
}

/* =========================
   FIX FOR HEADER.HTML
   Brukes når header.html har top-line + navbar
========================= */

.top-line {
  position: sticky;
  top: 0;
  z-index: 2000;

  height: 60px;
  padding: 0;

  background-color: #ffffff;
  color: #2f2a26;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.top-line a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: 4px;
  font-size: 28px;

  color: #2f2a26;
  text-decoration: none;
  text-transform: uppercase;
}

.top-line a:visited,
.top-line a:hover,
.top-line a:active {
  color: #2f2a26;
  text-decoration: none;
}

.navbar {
  position: sticky;
  top: 60px;
  z-index: 1500;

  background-color: #eee6dc;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  padding: 18px 30px;
}

.nav-left {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 80px;
}

.nav-right .cart-link {
  color: #2f2a26;
  text-decoration: none;
}

.nav-right .cart-link:visited,
.nav-right .cart-link:hover,
.nav-right .cart-link:active {
  color: #2f2a26;
  text-decoration: none;
}

/* Mobilversjon for gammel header.html */

@media (max-width: 768px) {
  .top-line {
    position: sticky;
    top: 0;
    z-index: 3000;

    height: 60px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;
  }

  .top-line a {
    position: relative;
    z-index: 3002;

    font-size: 28px;
    letter-spacing: 4px;
    line-height: 1;
  }

  .navbar {
    position: sticky;
    top: 60px;
    z-index: 2500;

    height: auto;
    padding: 0;

    background-color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
    visibility: visible;

    position: absolute;
    left: 16px;
    top: 5px;

    z-index: 3003;

    width: 40px;
    height: 40px;
    padding: 0;

    align-items: center;
    justify-content: center;

    background: none;
    border: none;

    color: #2f2a26;
    font-size: 28px;
    cursor: pointer;
  }

  .nav-left {
    display: none;

    width: 100%;

    flex-direction: column;
    gap: 0;

    text-align: center;
    background-color: #eee6dc;
    padding: 18px 0;
  }

  .nav-left.active {
    display: flex;
  }

  .nav-left a {
    padding: 14px 0;
    font-size: 15px;
  }

  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: absolute;
    right: 16px;
    top: 5px;

    z-index: 3003;
  }

  .nav-right .cart-link {
    position: static !important;
    transform: none !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;

    color: #2f2a26;
    text-decoration: none;
  }
}
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px 110px;
  font-family: "Montserrat", sans-serif;
  color: #2f2a26;
}

.contact-hero {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.contact-label {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a7a55;
}

.contact-hero h1 {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-intro {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.9;
  color: #6d625a;
}

.contact-content {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
  background: #fff;
  border: 1px solid #eadfd3;
  box-shadow: 0 18px 45px rgba(72, 55, 38, 0.07);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f7f0e8;
  color: #9a7a55;
  font-size: 1.1rem;
}

.contact-card-title {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a7a55;
}

.contact-link {
  color: #2f2a26;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-link:hover {
  color: #9a7a55;
}

.contact-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: #6d625a;
}

.contact-note {
  margin-top: 16px;
  padding: 34px 36px;
  background: #faf7f3;
  border: 1px solid #eadfd3;
  text-align: center;
}

.contact-note h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.contact-note p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
  color: #6d625a;
}

@media (max-width: 700px) {
  .contact-page {
    padding: 65px 18px 80px;
  }

  .contact-card {
    align-items: flex-start;
    padding: 22px;
  }

  .contact-note {
    padding: 28px 22px;
  }
}