/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blush: #d4928a;
  --blush-light: #e2afa9;
  --blush-dark: #b87a73;
  --charcoal: #333333;
  --charcoal-light: #555555;
  --beige: #faf5f0;
  --beige-dark: #f0e8df;
  --white: #ffffff;
  --shadow: rgba(51, 51, 51, 0.1);
  --shadow-md: rgba(51, 51, 51, 0.15);
  --transition: 0.3s ease;
  --radius: 8px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  background-color: var(--beige);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Antic Didone', serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
}

a {
  color: var(--blush-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blush);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--beige);
  transition: background-color var(--transition), box-shadow var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  padding: 0.7rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: 'Antic Didone', serif;
  font-size: 1.75rem;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

.navbar__logo span {
  color: var(--blush);
}

.navbar__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar__link {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blush);
  transition: width var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--blush);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger__line {
  width: 26px;
  height: 2px;
  background-color: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 6.5rem 0 0.5rem;
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.breadcrumbs a {
  color: var(--blush-dark);
}

.breadcrumbs a:hover {
  color: var(--blush);
}

.breadcrumbs span {
  margin: 0 0.4rem;
  color: var(--charcoal-light);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1rem 4rem;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 50%, var(--beige) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(212, 146, 138, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--blush);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--blush);
  color: var(--white);
  border-color: var(--blush);
}

.btn--primary:hover {
  background-color: var(--blush-dark);
  border-color: var(--blush-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 146, 138, 0.4);
}

.btn--outline {
  background-color: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline:hover {
  background-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ===== CARD ===== */
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: var(--beige-dark);
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.card__price {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blush);
  margin-top: 0.75rem;
}

/* ===== FEATURES / INFO BLOCKS ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.feature__icon {
  font-size: 2.5rem;
  color: var(--blush);
  margin-bottom: 1rem;
}

.feature__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature__text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* ===== ABOUT LAYOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-md);
}

.about-grid__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-grid__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.about-grid__content p {
  margin-bottom: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 146, 138, 0);
  transition: background var(--transition);
}

.gallery-grid__item:hover::after {
  background: rgba(212, 146, 138, 0.2);
}

.gallery-grid__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(51, 51, 51, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  transition: color var(--transition);
}

.lightbox__close:hover {
  color: var(--blush);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem;
  transition: color var(--transition);
}

.lightbox__nav:hover {
  color: var(--blush);
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info__icon {
  font-size: 1.3rem;
  color: var(--blush);
  min-width: 28px;
  text-align: center;
  padding-top: 0.2rem;
}

.contact-info__label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-info__value {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background-color: var(--beige);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(212, 146, 138, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===== MAP EMBED ===== */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  margin-top: 3rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== HOURS TABLE ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--beige-dark);
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--charcoal);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--charcoal-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 1rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn--outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-banner .btn--outline:hover {
  background-color: var(--white);
  color: var(--blush);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-family: 'Antic Didone', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer__brand span {
  color: var(--blush);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--blush);
}

.footer__heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--blush);
}

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer__contact-item i {
  color: var(--blush);
  min-width: 18px;
  padding-top: 0.15rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HEADER (internal pages) ===== */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
}

.page-header__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-header__subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--blush-light);
}

.timeline__item {
  display: flex;
  width: 50%;
  padding: 1.5rem;
}

.timeline__item:nth-child(odd) {
  margin-left: auto;
  padding-left: 3rem;
}

.timeline__item:nth-child(even) {
  padding-right: 3rem;
  text-align: right;
}

.timeline__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--blush);
  border-radius: 50%;
  border: 3px solid var(--beige);
}

.timeline__year {
  font-family: 'Antic Didone', serif;
  font-size: 1.5rem;
  color: var(--blush);
  margin-bottom: 0.5rem;
}

.timeline__text {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* ===== PRODUCT CATEGORY TABS ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--beige-dark);
  border-radius: 50px;
  background-color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--blush);
  color: var(--white);
  border-color: var(--blush);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .grid--3,
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .timeline::before {
    left: 2rem;
  }

  .timeline__item {
    width: 100%;
    padding-left: 4rem !important;
    padding-right: 1rem !important;
    text-align: left !important;
  }

  .timeline__item:nth-child(odd) {
    margin-left: 0;
  }

  .timeline__dot {
    left: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    background-color: var(--white);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 30px var(--shadow-md);
    transition: right var(--transition);
  }

  .navbar__menu.open {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero {
    min-height: 80vh;
    padding: 6rem 1rem 3rem;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .features {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 3.5rem 0;
  }

  .page-header {
    padding: 6rem 0 2rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
