:root {
  --green-dark: #2f4f3a;
  --green-soft: #7da38b;
  --cream: #fdf8f2;
  --accent: #e2b887;
  --accent-soft: #f3d7b5;
  --text-main: #243126;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}



.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}



header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 79, 58, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(47, 79, 58, 0.15);
  background: white;
}

.nav-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.nav-menu {
  display: flex;

  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-menu a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green-soft);
  transition: width 0.2s ease-out;
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(47, 79, 58, 0.25);
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #264232;
  box-shadow: 0 10px 22px rgba(47, 79, 58, 0.3);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green-dark);
}



.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;

  align-items: center;
}

.hero-tag {
  display: inline-flex;

  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(125, 163, 139, 0.12);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.1vw + 1.4rem, 3.3rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--green-dark);
}

.hero-sub {
  font-size: 1.02rem;
  max-width: 34rem;
  margin-bottom: 1.6rem;
  color: rgba(36, 49, 38, 0.94);
}

.hero-sub strong {
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.btn-primary {
  display: inline-flex;

  align-items: center;
  justify-content: centre;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(47, 79, 58, 0.32);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out;
}

.btn-primary:hover {
  background: #274133;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(47, 79, 58, 0.38);
}

.btn-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: centre;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 79, 58, 0.28);
  background: rgba(253, 248, 242, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark);
  cursor: pointer;
  transition: background 0.15s ease-out, border-colour 0.15s ease-out,
    border-color 0.15s ease-out;
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(47, 79, 58, 0.55);
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(36, 49, 38, 0.8);
}

.hero-note span {
  font-weight: 600;
  color: var(--green-dark);
}

.hero-art {
  position: relative;
  justify-self: centre;
  justify-self: center;
}

.hero-logo-card {
  position: relative;
  background: radial-gradient(
    circle at top,
    #ffffff 0,
    #f9f2ea 34%,
    #f1e0ce 100%
  );
  border-radius: 32px;
  padding: 1.8rem 1.7rem 1.9rem;
  box-shadow: 0 24px 55px rgba(40, 60, 50, 0.32);
  border: 1px solid rgba(110, 132, 117, 0.35);
}

.hero-logo-text {
  margin-top: 0.9rem;
  text-align: centre;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(47, 79, 58, 0.9);
}



.hero-badge {
  position: absolute;
  right: 1.1rem;
  bottom: 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(47, 79, 58, 0.96);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(47, 79, 58, 0.6);
  display: flex;

  align-items: center;
  gap: 0.4rem;
}

.hero-badge span {
  font-size: 1rem;
}



section {
  padding: 2.8rem 0;
}

.section-header {
  text-align: centre;
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(47, 79, 58, 0.7);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.98rem;
  max-width: 32rem;
  margin: 0.1rem auto 0;
  color: rgba(36, 49, 38, 0.8);
}



.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(125, 163, 139, 0.13);
  color: var(--green-dark);
  border: 1px dashed rgba(47, 79, 58, 0.28);
}

.about-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 18px 40px rgba(39, 55, 48, 0.16);
  border: 1px solid rgba(197, 211, 201, 0.7);
}

.about-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--green-dark);
}

.about-card ul {
  list-style: none;
  font-size: 0.94rem;
}

.about-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.about-card li span {
  font-size: 1rem;
  margin-top: 0.1rem;
}



.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.3rem 1.2rem 1.4rem;
  box-shadow: 0 16px 34px rgba(39, 55, 48, 0.14);
  border: 1px solid rgba(201, 214, 204, 0.9);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-colour 0.18s ease-out, border-color 0.18s ease-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(39, 55, 48, 0.16);
  border-color: rgba(125, 163, 139, 0.9);
}

.card-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(125, 163, 139, 0.16);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.card h3 {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-family: "Playfair Display", serif;
  color: var(--green-dark);
}

.card p {
  font-size: 0.92rem;
}

.card-foot {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  color: rgba(36, 49, 38, 0.75);
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #f5eadc, #fdf8f2);
  box-shadow: 0 16px 38px rgba(39, 55, 48, 0.15);
  transform-origin: centre;
  transform-origin: center;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 51, 40, 0.78), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 0.9rem;
  color: #fff;
  font-size: 0.9rem;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 48px rgba(39, 55, 48, 0.22);
}

.gallery-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.gallery-tagline {
  font-size: 0.8rem;
  opacity: 0.9;
}



.callout {
  margin-top: 2.4rem;
  border-radius: 22px;
  padding: 1.1rem 1.1rem;
  background: linear-gradient(
    120deg,
    rgba(125, 163, 139, 0.14),
    rgba(226, 184, 135, 0.14)
  );
  display: flex;
  flex-wrap: wrap;

  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.92rem;
}

.callout span {
  font-weight: 600;
  color: var(--green-dark);
}



.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: centre;
  justify-content: center;
  margin-top: 1.4rem;
}

.social-pill {
  display: inline-flex;

  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 79, 58, 0.25);
  background: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    border-colour 0.15s ease-out, border-color 0.15s ease-out;
  box-shadow: 0 10px 26px rgba(39, 55, 48, 0.13);
}

.social-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 79, 58, 0.65);
  box-shadow: 0 14px 32px rgba(39, 55, 48, 0.2);
}

.social-pill span {
  font-size: 1.1rem;
}



.centred-text {
  text-align: centre;
  text-align: center;
}

.contact-text {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.97rem;
}

.contact-text p {
  margin-bottom: 0.5rem;
}



footer {
  margin-top: auto;
  padding: 1.6rem 0 2.1rem;
  background: #f6ede2;
  border-top: 1px solid rgba(47, 79, 58, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;

  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.footer-inner a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}



.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}



.hero-intro {
  animation: floatIn 0.8s ease-out both;
}

.hero-intro-slow {
  animation: floatIn 1s ease-out both;
  animation-delay: 0.14s;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-art {
    order: -1;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

@media (max-width: 720px) {
  .hero {
    padding-bottom: 1.2rem;
  }
  .nav-menu .nav-cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(47, 79, 58, 0.18);
  }

  main {
    display: flex;
    flex-direction: column;
  }

  #about {
    order: 2;
  }
  #collections {
    order: 3;
  }
  #gallery {
    order: 1;
  }
  #contact {
    order: 5;
  }
  #hero {
    order: 0;
  }
  #visit {
    order: 4;
  }
  .nav-menu a[href="#gallery"] {
    order: 1;
  }
  .nav-menu a[href="#about"] {
    order: 2;
  }
  .nav-menu a[href="#collections"] {
    order: 3;
  }
  .nav-menu a[href="#visit"] {
    order: 4;
  }
  .nav-menu a[href="#contact"] {
    order: 5;
  }
  .nav-cta {
    order: 6;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(253, 248, 242, 0.98);
    padding: 0.75rem 1.5rem 1.1rem;
    box-shadow: 0 10px 28px rgba(39, 55, 48, 0.2);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  
  .nav-left {
    padding-left: 1.4rem;
  }

  
  .nav-toggle {
    margin-right: 1.4rem;
  }

  
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.4rem;
  }

  section {
    padding: 2.3rem 0;
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-logo-card {
    border-radius: 24px;
  }
  .hero-art {
    display: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-sub,
  .hero-note,
  .hero-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-logo-card {
    padding: 1.4rem 1.2rem 1.7rem;
  }

  .hero-badge {
    right: 0.9rem;
    bottom: 0.7rem;
    font-size: 0.76rem;
  }

  .callout {
    align-items: flex-start;
  }
}
