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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cormorant", "Times New Roman", Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: #111111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #255b8a;
}

p {
  margin: 0 0 1em;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant", "Times New Roman", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 0.4em;
  color: #111111;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

header {
  padding: 22px 0;
  border-bottom: 1px solid #ededed;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

header > .wrapper {
  max-width: none;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.branding {
  text-align: left;
}

.branding a {
  color: #111111;
}

.store-header {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 30px;
}

.header-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.header-nav a.active {
  border-bottom: 1px solid #111111;
  padding-bottom: 2px;
}

.main {
  min-height: 55vh;
}

.home-hero {
  width: 100%;
  background: #f3f3f3;
}

.home-hero img {
  width: 100%;
  height: clamp(280px, calc(80vh - 170px), 780px);
  object-fit: cover;
  object-position: center;
}

.home-intro {
  padding: 54px 0 28px;
}

.home-intro-inner {
  max-width: 920px;
  text-align: center;
}

.home-intro h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.home-intro p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333333;
}

.home-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.text-link {
  border-bottom: 1px solid #111111;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.home-works,
.about-section,
.latest-blog,
.instagram-section {
  padding: 48px 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
}

.product-list-link {
  display: block;
  position: relative;
}

.product-list-image-container {
  background: #f3f3f3;
  overflow: hidden;
  position: relative;
}

.product-list-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-list-thumb-info {
  align-items: center;
  background: rgba(0, 0, 0, 0.82);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 24px;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  width: 100%;
  z-index: 2;
}

.product-list-link:hover .product-list-thumb-info,
.product-list-link:focus .product-list-thumb-info {
  opacity: 1;
  visibility: visible;
}

@media (hover: none) {
  .product-list-thumb-info {
    opacity: 1;
    position: static;
    visibility: visible;
  }
}

.product-list-thumb-name {
  color: #ffffff;
  text-align: center;
}

.product-list-thumb-name {
  font-size: 1.08rem;
  line-height: 1.25;
}

.latest-blog-card-meta {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
}

.product-list-link--rollover:hover,
.product-list-link--rollover:focus,
.product-list-link--rollover:hover .product-list-thumb-name,
.product-list-link--rollover:focus .product-list-thumb-name {
  color: #ffffff;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 34px;
}

.view-all-button,
.newsletter-button {
  display: inline-block;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.view-all-button:hover,
.view-all-button:focus,
.newsletter-button:hover,
.newsletter-button:focus {
  background: #255b8a;
  border-color: #255b8a;
  color: #ffffff;
}

.about-section-inner {
  max-width: 820px;
  text-align: center;
}

.about-section p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: #333333;
}

.latest-blog-inner {
  max-width: 900px;
}

.latest-blog-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1fr;
  gap: 30px;
  align-items: center;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 30px 0;
}

.latest-blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.latest-blog-video {
  margin: 0;
}

.latest-blog-card-title {
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 8px 0 12px;
}

.latest-blog-card-excerpt {
  color: #333333;
}

.latest-blog-card-link {
  display: inline-block;
  border-bottom: 1px solid #111111;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
  margin: 34px 0 78px;
  padding: 34px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.newsletter-copy .section-title {
  text-align: left;
  margin-bottom: 14px;
}

.newsletter-copy .section-title.has-dash::after {
  margin-left: 0;
}

.newsletter-copy p,
.newsletter-note {
  color: #555555;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.newsletter-input {
  min-width: 0;
  border: 1px solid #d8d8d8;
  background: #fafafa;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
}

.newsletter-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.newsletter-note {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.newsletter-pending {
  color: #9a5b2f;
}

.instagram-section-inner {
  text-align: center;
}

.instagram-handle {
  margin-bottom: 22px;
  color: #444444;
}

.instagram-handle a {
  border-bottom: 1px solid #111111;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.instagram-grid a {
  display: block;
  overflow: hidden;
  background: #f3f3f3;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.instagram-grid a:hover img,
.instagram-grid a:focus img {
  opacity: 0.9;
  transform: scale(1.02);
}

.instagram-widget {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.instagram-note {
  margin: 14px 0 0;
  color: #777777;
  font-size: 0.9rem;
}

.page-title {
  font-size: 2.6rem;
  margin: 30px 0 24px;
  text-align: center;
  font-weight: 400;
}

.page-title.has-dash::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #111111;
  margin: 18px auto 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin: 30px 0 80px;
}

.blog-main,
.blog-sidebar {
  min-width: 0;
}

.blog-article {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ededed;
}

.blog-article:last-child {
  border-bottom: none;
}

.blog-article-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 20px;
  background: #f3f3f3;
}

.blog-article-video {
  margin: 0 0 20px;
}

.blog-article-meta,
.blog-post-meta {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
}

.blog-article-meta {
  margin-bottom: 8px;
}

.blog-article-title {
  font-size: 1.9rem;
  margin: 0 0 14px;
  font-weight: 400;
}

.blog-article-title a {
  color: #111111;
}

.blog-article-title a:hover {
  color: #255b8a;
}

.blog-article-excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 18px;
}

.read-more,
.back-to-blog {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid #111111;
  padding-bottom: 2px;
}

.read-more:hover,
.back-to-blog:hover {
  border-bottom-color: #255b8a;
}

.sidebar-widget {
  margin-bottom: 44px;
}

.sidebar-title {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #111111;
  font-weight: 400;
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ededed;
  font-size: 0.98rem;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-list .count {
  color: #999999;
  font-size: 0.85rem;
}

.related-article {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.related-article-thumb {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  object-fit: cover;
  background: #f3f3f3;
}

.related-article-info {
  flex: 1;
  min-width: 0;
}

.related-article-title {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 4px;
  font-weight: 400;
}

.related-article-date {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #dddddd;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #555555;
  transition: all 0.2s ease;
}

.tag-cloud a:hover {
  border-color: #255b8a;
  color: #255b8a;
}

.blog-post-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 28px;
}

.blog-post-title {
  font-size: 2.4rem;
  margin: 0 0 14px;
  font-weight: 400;
}

.blog-post-meta {
  margin-bottom: 26px;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222222;
}

.blog-post-content h2 {
  font-size: 1.6rem;
  margin: 32px 0 14px;
}

.blog-post-content blockquote {
  margin: 28px 0;
  padding: 0 28px;
  border-left: 2px solid #255b8a;
  font-style: italic;
  color: #444444;
}

.blog-video {
  margin: 32px 0;
  aspect-ratio: 16 / 9;
  background: #f3f3f3;
}

.blog-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.blog-post-video-hero {
  margin: 0 0 28px;
}

.blog-post-content > p:has(img),
.blog-inline-image {
  margin: 30px 0;
}

.blog-post-content > p:has(img) img,
.blog-inline-image {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  background: #f3f3f3;
}

.blog-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0 0;
}

.blog-product-grid a {
  display: block;
  background: #f3f3f3;
  overflow: hidden;
}

.blog-product-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.blog-product-grid a:hover img,
.blog-product-grid a:focus img {
  opacity: 0.9;
  transform: scale(1.02);
}

.back-to-blog {
  margin-top: 30px;
}

.not-found {
  max-width: 720px;
  margin: 60px auto 100px;
  text-align: center;
}

footer {
  border-top: 1px solid #ededed;
  padding: 50px 0 36px;
  background: #ffffff;
  margin-top: 40px;
}

footer .wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-nav h4 {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 400;
}

.footer-links,
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #444444;
}

.footer-links a:hover {
  color: #255b8a;
}

.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  background: #fafafa;
  margin-bottom: 18px;
}

.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.search-button {
  background: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  color: #555555;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-links a {
  color: #444444;
}

.footer-custom-content {
  font-size: 0.92rem;
  color: #666666;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-credit {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid #ededed;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  footer .wrapper {
    grid-template-columns: 1fr 1fr;
  }

  header > .wrapper {
    padding: 0 28px;
  }
}

@media (max-width: 700px) {
  .wrapper {
    padding: 0 20px;
  }

  .home-hero img {
    height: 320px;
  }

  .home-intro {
    padding-top: 38px;
  }

  .product-list,
  .latest-blog-card,
  .newsletter-section,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

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

  .newsletter-copy .section-title,
  .newsletter-copy {
    text-align: center;
  }

  .newsletter-copy .section-title.has-dash::after {
    margin-left: auto;
  }

  header > .wrapper {
    padding: 0 20px;
    flex-direction: column;
    gap: 12px;
  }

  .branding {
    text-align: center;
  }

  .store-header {
    font-size: 1.5rem;
  }

  .header-nav ul {
    gap: 14px;
    justify-content: center;
  }

  .header-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .page-title {
    font-size: 2rem;
  }

  .blog-article-title {
    font-size: 1.5rem;
  }

  .blog-post-title {
    font-size: 2rem;
  }

  footer .wrapper {
    grid-template-columns: 1fr;
  }
}
