<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --white: #FFFFFF;
    --ivory: #FAF7F2;
    --cream: #F2EDE4;
    --sand: #E8DDD0;
    --rose: #C5927A;
    --rose-deep: #A5735C;
    --charcoal: #21211f;
    --primary: #00538f;
    --muted: #7A7570;
    --border: #DDD5C8;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    font-weight: 300;
	padding:0px;
	margin:0px;
  }

  a {text-decoration:none}
  
  /* ANNOUNCEMENT BAR */
  .announcement {
    background: var(--primary);
    color: #f0ebe4;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 9px 16px;
    font-weight: 400;
  }

  /* NAV */
  nav {
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-inner {
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
  }

  .logo img {max-height:36px;}
  
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a:hover { color: var(--rose); }

  .dropdown { position: relative; }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ivory);
    border: 1px solid var(--border);
    min-width: 180px;
    z-index: 200;
    padding-top: 16px;
  }

  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
  }

  .dropdown:hover .dropdown-menu { display: block; }

  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }

  .dropdown-menu a:last-child { border-bottom: none; }
  .dropdown-menu a:hover { background: var(--cream); }

  /* HERO SLIDER */
  .hero {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
  }

  .hero-slide.active { opacity: 1; z-index: 1; }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

	.hero.inner img {
    width: 100% !important;
    height:auto;
	display: block;
  }
  
  .hero.inner {
    position: relative;
    width: 100%;
  }
  
  .inner-banner img { width:100%}
  
  .hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(20,18,16,0.62) 0%,
      rgba(20,18,16,0.3) 50%,
      rgba(20,18,16,0.1) 100%
    );
  }

  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8% 0 7%;
    max-width: 680px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.08;
    color: #fff;
    letter-spacing: 0.02em;
    margin: 20px 0px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.9s 0.5s forwards;
  }

  .hero h1 em {
    font-style: italic;
    color: #e8b89e;
  }

  .hero p {
    font-size: 16px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    margin-bottom: 20px;
    max-width: 420px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.9s 0.7s forwards;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.9s 0.9s forwards;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .btn-primary {
    display: inline-block;
    padding: 13px 40px;
    background: var(--rose-deep);
    color: var(--ivory);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: var(--rose-deep); }

  .btn-outline {
    display: inline-block;
    padding: 12px 36px;
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s;
  }

  .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

  /* Slider dots */
  .hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
  }

  .hero-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 3px;
  }

  /* Slider arrows */
  .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
  }

  .hero-arrow:hover { background: rgba(255,255,255,0.28); }
  .hero-arrow.prev { left: 24px; }
  .hero-arrow.next { right: 24px; }

  /* Slide counter */
  .hero-counter {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 20;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    font-family: 'Jost', sans-serif;
  }

  .hero-counter span { color: rgba(255,255,255,0.9); }

  /* SECTION HEADER */
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
  }

  .inner-block .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: 0em;
    color: var(--rose-deep);
  }
  
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--charcoal);
  }

  .section-title.sub-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 32px);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--charcoal);
  }
  
  .section-divider {
    width: 40px;
    height: 1px;
    background: var(--rose);
    margin: 16px auto 0;
  }

  /* CATEGORY STRIPS */
  .categories-section {
    padding: 72px 32px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
	justify-content: center;
  }

  .category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-end;
  }

  .category-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .category-card:hover .category-card-img { transform: scale(1.04); }

  .category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,44,42,0.65) 0%, transparent 55%);
  }

  .category-label {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: #fff;
    width: 100%;
  }

  .category-label h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
	text-transform:capitalize;
	text-decoration:none !important;
  }

  .category-label span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
  }

  /* PRODUCTS SECTION */
  .products-section {
    padding: 72px 32px;
    background: var(--cream);
  }

  .products-section-inner { max-width: 1280px; margin: 0 auto; }

  .products-section.bridal {}
  
  .products-section.bridal .product-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.25s;
	}
  
  .products-section.bridal .product-card .product-info table thead tr > th {
    background: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    text-align: left;
	}

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .product-card {
    background: var(--ivory);
    overflow: hidden;
    transition: transform 0.25s;
  }

  .product-card:hover { transform: translateY(-4px); }

  .product-img-wrap {
    /* aspect-ratio: 3/4; */
    overflow: hidden;
    background: var(--sand);
  }

  .product-img-wrap img {
    width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
  }

  .product-card:hover .product-img-wrap img { transform: scale(1.04); }

  .product-info table { border-collapse:collapse; width:100%}
  
  .product-info table tbody tr > td {border:1px solid #ddd; padding:10px;}
  
  .product-info table thead tr > th {background:#f7f7f7; font-family: 'Cormorant Garamond', serif; font-size: 24px; text-align:left;}
  
  .product-info {
    padding: 14px 16px 16px;
    border-top: 1px solid var(--border);
  }

  .product-info.bridal-info h4 {
    margin: 25px 0px 5px 0px;
    padding: 0px 0px 0px 0px;
  }
  
  .product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: 0.02em;
	margin-bottom:1em;
	text-transform:capitalize;
  }

	.product-info h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .section-cta {
    text-align: center;
    margin-top: 48px;
  }

  /* ABOUT STRIP */
  
  .about-strip {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  .inner-block {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px;
    display: block;
    grid-template-columns: 100%;
    gap: 0px;
    align-items: center;
  }
  
  .about-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--sand);
    overflow: hidden;
  }

  .about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 50%;
    height: 50%;
    border: 2px solid var(--rose);
    z-index: -1;
  }

  .about-text .section-header { text-align: left; }
  .about-text .section-divider { margin: 16px 0 0; }

  ` {
    font-size: 17px;
    line-height: 2;
    color: var(--charcoal);
    margin-top: 24px;
    letter-spacing: 0.03em;
  }

  .about-text .btn-outline { margin-left: 0; margin-top: 32px; display: inline-block; }

  /* VALUES */
  .values-section {
    background: var(--charcoal);
    padding: 72px 32px;
    text-align: center;
  }

  .values-inner { max-width: 1280px; margin: 0 auto; }

  .values-section .section-eyebrow { color: var(--rose); }

  .values-section .section-title {
    color: var(--ivory);
    margin-bottom: 48px;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .value-item {
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .value-icon {
    font-size: 60px;
    margin-bottom: 16px;
  }

  .value-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--ivory);
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }

  .value-item p {
    font-size: 16px;
    color: rgba(240,235,228,0.6);
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  /* MARQUEE */
  .marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 18px 0;
    background: var(--ivory);
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 0.06em;
    padding: 0 48px;
    flex-shrink: 0;
  }

  .marquee-dot {
    color: var(--rose);
    font-style: normal;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* NOTICE BANNER */
  .notice-banner {
    background: #FEF3ED;
    border: 1px solid #F0C4AD;
    margin: 40px 32px;
    max-width: calc(1280px - 64px);
    margin-left: auto;
    margin-right: auto;
    padding: 16px 24px;
    font-size: 13px;
    color: #7A4030;
    letter-spacing: 0.04em;
    line-height: 1.7;
    text-align: center;
  }

  /* SIZE CHART */
  .size-chart-section {
    padding: 72px 32px;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  /* INSTAGRAM SECTION */
  .instagram-section {
    padding: 72px 32px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }

  .instagram-tile {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--sand);
    position: relative;
  }

  .instagram-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .instagram-tile:hover img { transform: scale(1.06); filter: brightness(0.85); }

  /* FOOTER */
  footer {
    background: var(--charcoal);
    color: rgba(240,235,228,0.7);
    padding: 64px 32px 32px;
  }

  .footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand .logo {
    color: var(--ivory);
    display: block;
    margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(240,235,228,0.55);
    letter-spacing: 0.03em;
    max-width: 280px;
  }
  
  .footer-brand p a{
    color: rgba(240,235,228,0.55);
  }
  
  .footer-brand p a:hover { color: var(--white); }

  .footer-col h5 {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ivory);
    font-weight: 400;
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; margin:0px !important; padding:0px !important }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 16px;
    color: rgba(240,235,228,0.55);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--white); }

  .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .social-link svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s;
  }

  .social-link:hover svg { opacity: 1; }

  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(240,235,228,0.35);
    letter-spacing: 0.06em;
  }

  /* MOBILE MENU */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--charcoal);
  }

  .mobile-menu-btn svg { display: block; }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--ivory);
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 0;
  }

  .mobile-nav a {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 400;
  }

  .mobile-nav.open { display: flex; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .instagram-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .about-strip { grid-template-columns: 1fr; gap: 40px; }
    .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap::after { display: none; }
    .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .btn-outline { margin-left: 0; margin-top: 12px; display: block; width: fit-content; }
    .hero { height: 75vh; }
    .hero-content { padding: 0 24px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .hero-arrow { width: 36px; height: 36px; }
    .hero-arrow.prev { left: 12px; }
    .hero-arrow.next { right: 12px; }
    .hero-counter { display: none; }
    .categories-section, .products-section, .about-strip, .about-strip-inner,
    .instagram-section { padding-left: 16px; padding-right: 16px; }
  }

  @media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  }

	.size-chart-section {
		padding: 60px 20px;
		background: #faf8f5;
	}
	}

	.size-chart-section .container {
		max-width: 900px;
		margin: auto;
	}

	.size-chart-section h2 {
		text-align: center;
		font-size: 36px;
		margin-bottom: 10px;
		color: #333;
	}

	.size-chart-section .note {
		text-align: center;
		color: #777;
		margin-bottom: 30px;
	}

	.size-chart {
		width: 100%;
		border-collapse: collapse;
		background: #fff;
		box-shadow: 0 5px 20px rgba(0,0,0,0.08);
		border-radius: 10px;
		overflow: hidden;
	}

	.size-chart th {
		background: #c79b54;
		color: #fff;
		padding: 15px;
		text-align: center;
	}

	.size-chart td {
		padding: 14px;
		text-align: center;
		border-bottom: 1px solid #eee;
	}

	.size-chart tr:hover {
		background: #faf3e8;
	}

	.measurement-guide {
		margin-top: 40px;
		background: #fff;
		padding: 25px;
		border-radius: 10px;
		box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	}

	.measurement-guide h3 {
		margin-bottom: 15px;
		color: #333;
	}

	.measurement-guide ul {
		padding-left: 20px;
		line-height: 1.8;
	}

	@media (max-width: 768px) {
		.size-chart-section h2 {
			font-size: 28px;
		}

		.size-chart th,
		.size-chart td {
			padding: 10px;
			font-size: 14px;
		}
	}

</style>